# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
569967 | 2022-05-28T11:14:28 Z | 600Mihnea | Potemkin cycle (CEOI15_indcyc) | C++17 | 3 ms | 340 KB |
#include <bits/stdc++.h> using namespace std; const int N = 1000 + 7; const int INF = (int) 1e9 + 7; int n, m, dist[N], par[N]; vector<int> g[N]; signed main() { ios::sync_with_stdio(0); cin.tie(0); freopen ("input.txt", "r", stdin); cin >> n >> m; for (int i = 1; i <= m; i++) { int a, b; cin >> a >> b; g[a].push_back(b); g[b].push_back(a); } for (int i = 1; i <= n; i++) { sort(g[i].begin(), g[i].end()); } for (int root = 1; root <= n; root++) { for (auto &v1 : g[root]) { for (auto &v2 : g[root]) { if (v1 == v2) continue; for (int i = 1; i <= n; i++) { dist[i] = INF; par[i] = 0; } dist[root] = -1; for (auto &v : g[root]) { if (v != v1 && v != v2) { dist[v] = -1; } } queue<int> q; dist[v1] = 0; q.push(v1); while (!q.empty()) { int a = q.front(); q.pop(); for (auto &b : g[a]) { if (dist[b] == INF) { dist[b] = 1 + dist[a]; par[b] = a; q.push(b); } } } if (dist[v2] == 1) continue; if (dist[v2] != -1 && dist[v2] != INF) { while (v2 != v1) { cout << v2 << " "; v2 = par[v2]; } cout << v1 << " " << root << "\n"; return 0; } } } } cout << "no\n"; exit(0); }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 340 KB | Expected integer, but "no" found |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 340 KB | Expected integer, but "no" found |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 340 KB | Expected integer, but "no" found |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 3 ms | 340 KB | Expected integer, but "no" found |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 340 KB | Expected integer, but "no" found |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 340 KB | Output is correct |
2 | Incorrect | 3 ms | 340 KB | Expected integer, but "no" found |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 340 KB | Expected integer, but "no" found |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 340 KB | Expected integer, but "no" found |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 340 KB | Expected integer, but "no" found |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 2 ms | 340 KB | Expected integer, but "no" found |
2 | Halted | 0 ms | 0 KB | - |