#include <iostream>
#include <cstdio>
#include <algorithm>
#include <vector>
#include <queue>
using namespace std;
#define endl '\n'
#define ll long long
#define pi pair<int, int>
#define f first
#define s second
const int mxn = 1000, mxm = 200000;
int n, m;
int u[mxm], v[mxm], vis[mxm], p[mxm];
bool a[mxn][mxn];
vector<int> g[mxn], gr[mxm];
void dfs(int c){
vis[c] = 1;
for(int i : gr[c]){
if(!vis[i]){
p[i] = c;
dfs(i);
}else if(i != p[c]){
for(int j = 0; j < 2; j++){
for(int l = 0; l < 2; l++){
if(u[c] == v[i]) goto hell;
swap(u[i], v[i]);
}
swap(u[c], v[c]);
}
hell:
cout << u[i] + 1;
for(int j = c; ~j && u[j] != u[i]; j = p[j]){
cout << " " << u[j] + 1;
if(~p[j] && u[p[j]] != v[j]) swap(u[p[j]], v[p[j]]);
}
cout << endl;
exit(0);
}
}
}
int main(){
ios::sync_with_stdio(0);
cin.tie(0);
cin >> n >> m;
for(int i = 0; i < m; i++){
cin >> u[i] >> v[i];
u[m + i] = --u[i], v[m + i] = --v[i];
a[u[i]][v[i]] = a[v[i]][u[i]] = 1;
g[u[i]].push_back(i);
g[v[i]].push_back(i);
}
for(int i = 0; i < n; i++)
for(int j = 0; j < g[i].size(); j++)
for(int l = 0; l < j; l++){
int x = g[i][j], y = g[i][l];
if(!a[i ^ u[x] ^ v[x]][i ^ u[y] ^ v[y]]){
gr[(i == u[x]) * m + x].push_back((i == v[y]) * m + y);
gr[(i == u[y]) * m + y].push_back((i == v[x]) * m + x);
}
}
p[0] = -1;
dfs(0);
cout << "no" << endl;
return 0;
}
Compilation message
indcyc.cpp: In function 'int main()':
indcyc.cpp:60:19: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for(int j = 0; j < g[i].size(); j++)
~~^~~~~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
5120 KB |
Output is correct |
2 |
Correct |
3 ms |
5120 KB |
Output is correct |
3 |
Correct |
3 ms |
5120 KB |
Output is correct |
4 |
Correct |
3 ms |
5120 KB |
Output is correct |
5 |
Correct |
3 ms |
5120 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
4 ms |
5120 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
5120 KB |
Output is correct |
2 |
Correct |
3 ms |
5120 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
5248 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
4 ms |
5376 KB |
Expected integer, but "no" found |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
7 ms |
5760 KB |
Wrong answer on graph without induced cycle |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
11 ms |
6912 KB |
Expected integer, but "no" found |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
114 ms |
22264 KB |
Expected integer, but "no" found |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
136 ms |
51064 KB |
Expected integer, but "no" found |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
132 ms |
8312 KB |
Expected integer, but "no" found |
2 |
Halted |
0 ms |
0 KB |
- |