# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
598959 |
2022-07-19T08:23:56 Z |
이동현(#8460) |
Potemkin cycle (CEOI15_indcyc) |
C++17 |
|
1000 ms |
63604 KB |
#include <bits/stdc++.h>
//#pragma GCC optimize("O3")
//#pragma GCC optimize("Ofast")
//#pragma GCC optimize("unroll-loops")
using namespace std;
int n, m;
vector<int> way[1004];
int chk[1004], ss, from[1004], did[1004], didN;
//int que[1004], f, r;
void bfs(int s, int e){
queue<int> que;
que.push(s);
did[s] = didN;
while(!que.empty()){
int now = que.front(); que.pop();
for(auto&nxt:way[now]){
if(nxt != e && (!chk[nxt] || did[nxt] == didN)) continue;
from[nxt] = now;
que.push(nxt);
did[nxt] = didN;
}
}
if(did[e] == didN){
int now = e;
while(true){
cout << now << ' ';
if(now == s) break;
now = from[now];
}
cout << ss << '\n';
exit(0);
}
}
signed main(){
ios_base::sync_with_stdio(false);
cin.tie(0);
cin >> n >> m;
map<pair<int, int>, int> cant;
for(int i = 1; i <= m; ++i){
int x, y; cin >> x >> y;
if(x > y) swap(x, y);
way[x].push_back(y);
way[y].push_back(x);
cant[{x, y}] = 1;
cant[{y, x}] = 1;
}
for(int i = 1; i <= n; ++i) chk[i] = 1;
for(int i = 1; i <= n; ++i){
chk[i] = 0;
//sort(way[i].begin(), way[i].end());
for(auto&nxt:way[i]){
chk[nxt] = 0;
}
ss = i;
for(int j = 0; j < (int)way[i].size(); ++j){
for(int k = j + 1; k < (int)way[i].size(); ++k){
if(cant[{way[i][j], way[i][k]}]) continue;
++didN;
bfs(way[i][j], way[i][k]);
}
}
chk[i] = 1;
for(auto&nxt:way[i]){
chk[nxt] = 1;
}
}
cout << "no\n";
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
340 KB |
Output is correct |
2 |
Correct |
0 ms |
340 KB |
Output is correct |
3 |
Correct |
0 ms |
340 KB |
Output is correct |
4 |
Correct |
0 ms |
340 KB |
Output is correct |
5 |
Correct |
0 ms |
340 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
340 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1078 ms |
35044 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
340 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1080 ms |
49812 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
120 ms |
1240 KB |
Output is correct |
2 |
Correct |
3 ms |
724 KB |
Output is correct |
3 |
Correct |
5 ms |
1108 KB |
Output is correct |
4 |
Correct |
95 ms |
1980 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1093 ms |
52300 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1081 ms |
32404 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1089 ms |
63604 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
584 ms |
13364 KB |
Output is correct |
2 |
Execution timed out |
1088 ms |
13268 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |