# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
244471 | 2020-07-04T06:38:40 Z | dwsc | Potemkin cycle (CEOI15_indcyc) | C++14 | 21 ms | 1536 KB |
#include <bits/stdc++.h> using namespace std; typedef pair<int,int> ii; int n,m; vector<int> adj[1010]; int depth[1010],p[1010][10]; int lowest[1010][11]; int relabel[1010]; int counter; void dfs(int u,int pa){ //cout << u << pa << "hi\n"; depth[u] = depth[pa]+1; p[u][0] = pa; for (int i = 1; i <= 10; i++){ if (p[u][i-1] == 0) p[u][i] = 0; else p[u][i] = p[p[u][i-1]][i-1]; } for (int i = 0; i < adj[u].size(); i++){ int v = adj[u][i]; if (depth[v] != 0) continue; dfs(v,u); } relabel[u] = ++counter; } int lowestjump[1010]; int main(){ ios_base::sync_with_stdio(false); cin.tie(0); cin >> n >> m; for (int i = 0; i < m; i++){ int x,y; cin >> x >> y; adj[x].push_back(y); adj[y].push_back(x); } for (int i = 1; i <= n; i++){ if (p[i][0] == 0) dfs(i,0); } vector<ii> backedges; for (int i = 1; i <= n; i++){ lowestjump[i] = 1e9; for (int j = 0; j < adj[i].size(); j++){ int ni = adj[i][j]; if (p[ni][0] == i || p[i][0] == ni) continue; if (depth[i] < depth[ni]) continue; lowestjump[i] = min(lowestjump[i],relabel[ni]); if (depth[i]-depth[ni] >= 3) backedges.push_back(ii(i,ni)); } } for (int i = 0; i < backedges.size(); i++){ int minjump = 1e9; int start = backedges[i].first, fin = backedges[i].second; if (lowestjump[start] != relabel[fin]) continue; int temp = start; int counting = 0; while (temp != fin){ counting++; if (counting > 1000) return 0; temp = p[temp][0]; minjump = min(minjump,lowestjump[temp]); } if (minjump <= relabel[fin]) continue; cout << start << " "; while (start != fin){ start = p[start][0]; cout << start << " "; } return 0; } cout << "no"; return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 5 ms | 384 KB | Output is correct |
2 | Correct | 5 ms | 384 KB | Output is correct |
3 | Correct | 4 ms | 384 KB | Output is correct |
4 | Correct | 5 ms | 384 KB | Output is correct |
5 | Correct | 4 ms | 384 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 5 ms | 384 KB | Too short sequence |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 4 ms | 384 KB | Too short sequence |
2 | Incorrect | 5 ms | 384 KB | Unexpected end of file - token expected |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 5 ms | 384 KB | Too short sequence |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 5 ms | 384 KB | Too short sequence |
2 | Incorrect | 5 ms | 384 KB | Unexpected end of file - token expected |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 5 ms | 512 KB | Unexpected end of file - token expected |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 6 ms | 512 KB | Too short sequence |
2 | Incorrect | 6 ms | 384 KB | Unexpected end of file - token expected |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 15 ms | 1152 KB | Too short sequence |
2 | Correct | 8 ms | 896 KB | Too short sequence |
3 | Incorrect | 14 ms | 1024 KB | Unexpected end of file - token expected |
4 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 9 ms | 768 KB | Too short sequence |
2 | Incorrect | 9 ms | 768 KB | Unexpected end of file - token expected |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 21 ms | 1536 KB | Too short sequence |
2 | Incorrect | 21 ms | 1408 KB | Unexpected end of file - token expected |
3 | Halted | 0 ms | 0 KB | - |