Submission #00042


ソースコード

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
#include<bits/stdc++.h>
using namespace std;
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int n;
cin >> n;
int data[100010];
for(int i = 0;i < n;i++){
cin >> data[i];
}
bool ans[100010] = {};
bool finish[100010] = {};
for(int p = 0;p < n;p++){
if(finish[p]) continue;
bool used[100010] = {};
int now = p;
stack<int> dfs;
while(!used[now] && !finish[now]){
dfs.push(now);
used[now] = true;
now = (now + data[now]) % n;
}
bool ok = true;
if(finish[now]){
ok = false;
}
while(!dfs.empty()){
int tmp = dfs.top();
dfs.pop();
ans[tmp] = ok;
finish[tmp] = true;
if(tmp == now) ok = false;
}
}
int anss = 0;
for(int i = 0;i < n;i++){
if(ans[i]) anss++;
}
cout << anss << endl;
return 0;
}

ステータス

項目 データ
問題 0005 - 環状すごろく
ユーザー名 Cappuccino
投稿日時 2018-10-31 17:34:21
言語 C++11
状態 Accepted
得点 8
ソースコード長 851 Byte
最大実行時間 240 ms
最大メモリ使用量 1612 KB

セット

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

テストケース

ファイル名 状態 実行時間 メモリ使用量 #
in1.txt AC 24 ms 860 KB
1
in2.txt AC 19 ms 920 KB
1
in3.txt AC 24 ms 896 KB
1
in4.txt AC 24 ms 924 KB
1
in5.txt AC 28 ms 960 KB
1
in6.txt AC 19 ms 868 KB
1
in7.txt AC 19 ms 780 KB
1
in8.txt AC 21 ms 824 KB
1
in9.txt AC 21 ms 864 KB
1
in10.txt AC 25 ms 904 KB
1
in11.txt AC 20 ms 816 KB
1
in12.txt AC 21 ms 860 KB
1
in13.txt AC 28 ms 772 KB
1
in14.txt AC 24 ms 816 KB
1
in15.txt AC 23 ms 728 KB
1
in16.txt AC 23 ms 764 KB
1
in17.txt AC 25 ms 804 KB
1
in18.txt AC 240 ms 1228 KB
1
in19.txt AC 21 ms 884 KB
1
in20.txt AC 31 ms 1608 KB
1
in21.txt AC 34 ms 1612 KB
1
in22.txt AC 22 ms 852 KB
1
in23.txt AC 20 ms 892 KB
1
in24.txt AC 19 ms 808 KB
1
in25.txt AC 76 ms 980 KB
1
in26.txt AC 24 ms 832 KB
1
in27.txt AC 38 ms 976 KB
1
in28.txt AC 19 ms 928 KB
1
in29.txt AC 133 ms 1212 KB
1
in30.txt AC 137 ms 1188 KB
1