Submission #38360


ソースコード

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
#define rep(i,n) for(int i=0; i<(n); ++i)
#define outl(x) cout<< (x) << '\n'
#define fi first
#define se second
using pii = pair<int,int>;
using ll = long long;
using vi = vector<int>;
#define LIM 300010
int N;
int d[LIM];
bool visited[LIM];
bool dfsS(int u)
{
if (u == N-1) return true;
if (visited[u]) return false;
visited[u] = true;
int jump = min(u + d[u], N-1);
int before = max(u-1, 0);
return dfsS(jump) | dfsS(before);
}
bool dfsG(int u)
{
if (u == 0) return true;
if (visited[u]) return false;
visited[u] = true;
int jump = max(u-d[u], 0);
int before = min(u+1, N-1);
return dfsG(jump) | dfsG(before);
}
int main()
{
cin.tie(0), ios::sync_with_stdio(false);
cin >> N;
rep(i, N) {
cin >> d[i];
d[i] /= 10;
}
bool f = false;;
if (dfsS(0)) {
memset(visited, false, sizeof(visited));
if (dfsG(N-1)) f = true;
}
outl(f ? "yes" : "no");
}

ステータス

項目 データ
問題 0960 - トランポリン
ユーザー名 Arumakan_ei1727
投稿日時 2018-07-08 11:41:10
言語 C++11
状態 Accepted
得点 11
ソースコード長 1150 Byte
最大実行時間 47 ms
最大メモリ使用量 11596 KB

セット

セット 得点 Cases
1 ALL 11 / 11 *

テストケース

ファイル名 状態 実行時間 メモリ使用量 #
in1.txt AC 28 ms 732 KB
1
in2.txt AC 23 ms 620 KB
1
in3.txt AC 18 ms 760 KB
1
in4.txt AC 23 ms 628 KB
1
in5.txt AC 25 ms 624 KB
1
in6.txt AC 20 ms 960 KB
1
in7.txt AC 25 ms 496 KB
1
in8.txt AC 45 ms 11456 KB
1
in9.txt AC 41 ms 11588 KB
1
in10.txt AC 42 ms 5004 KB
1
in11.txt AC 24 ms 768 KB
1
in12.txt AC 24 ms 812 KB
1
in13.txt AC 27 ms 864 KB
1
in14.txt AC 21 ms 528 KB
1
in15.txt AC 27 ms 860 KB
1
in16.txt AC 33 ms 784 KB
1
in17.txt AC 17 ms 956 KB
1
in18.txt AC 18 ms 1000 KB
1
in19.txt AC 26 ms 664 KB
1
in20.txt AC 23 ms 828 KB
1
in21.txt AC 25 ms 996 KB
1
in22.txt AC 21 ms 660 KB
1
in23.txt AC 20 ms 736 KB
1
in24.txt AC 23 ms 816 KB
1
in25.txt AC 27 ms 868 KB
1
in26.txt AC 29 ms 912 KB
1
in27.txt AC 22 ms 708 KB
1
in28.txt AC 29 ms 620 KB
1
in29.txt AC 27 ms 784 KB
1
in30.txt AC 20 ms 800 KB
1
in31.txt AC 29 ms 912 KB
1
in32.txt AC 39 ms 2260 KB
1
in33.txt AC 40 ms 2136 KB
1
in34.txt AC 40 ms 2236 KB
1
in35.txt AC 42 ms 2924 KB
1
in36.txt AC 42 ms 4780 KB
1
in37.txt AC 47 ms 11596 KB
1
in38.txt AC 43 ms 6736 KB
1
in39.txt AC 33 ms 1720 KB
1
in40.txt AC 35 ms 5060 KB
1