# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
96877 | 2019-02-12T14:59:05 Z | Retro3014 | Pipes (CEOI15_pipes) | C++17 | 5000 ms | 14988 KB |
#include <stdio.h> #include <vector> #include <deque> using namespace std; #define MAX_N 100000 #define LN 17 typedef pair<int, int> pii; int N, M; vector<pii > gp[MAX_N+1]; int num[MAX_N+1]; int p[MAX_N+1][LN]; int up[MAX_N+1]; int lv[MAX_N+1]; pii edge[MAX_N+1]; int sz = 0; void dfs(int x){ for(int i=0; i<gp[x].size(); i++){ if(gp[x][i].first==p[x][0]) continue; dfs(gp[x][i].first); if(up[gp[x][i].first]<=lv[x]) edge[gp[x][i].second].first = edge[gp[x][i].second].second = 0; up[x] = min(up[x], up[gp[x][i].first]); } } deque<int> dq; void init_graph(int x){ dq.push_back(x); while(!dq.empty()){ x = dq.front(); dq.pop_front(); up[x] = lv[x]; for(int i=1; i<LN; i++) p[x][i] = p[p[x][i-1]][i-1]; for(int i=0; i<gp[x].size(); i++){ if(gp[x][i].first==p[x][0]) continue; lv[gp[x][i].first] = lv[x]+1; p[gp[x][i].first][0] = x; dq.push_back(gp[x][i].first); } } } int main(){ scanf("%d%d", &N, &M); for(int i=1; i<=N; i++) num[i] = 1; for(int i=1; i<=N; i++) lv[i] = up[i] = 1; int a, b, k, tmp, t, A, B; while(M--){ scanf("%d%d", &a, &b); A = a; B = b; for(int i=LN-1; i>=0; i--){ if(p[A][i]!=0) A = p[A][i]; if(p[B][i]!=0) B = p[B][i]; } if(A==B){ A = a; B = b; for(int i=LN-1; i>=0; i--){ if(lv[p[A][i]]>=lv[B]) A = p[A][i]; if(lv[p[B][i]]>=lv[A]) B = p[B][i]; } for(int i=LN-1; i>=0; i--){ if(p[A][i]!=p[B][i]){ A = p[A][i]; B = p[B][i]; } } if(A!=B) A = p[A][0]; k = A; up[a] = min(up[a], lv[k]); up[b] = min(up[b], lv[k]); }else{ if(num[A]>=num[B]){ tmp = a; a = b; b = tmp; tmp = A; A = B; B = tmp; } num[B] += num[A]; dfs(A); for(int i=1; i<LN; i++) p[a][i] = 0; p[a][0] = b; lv[a] = lv[b]+1; gp[a].push_back({b, sz}); gp[b].push_back({a, sz}); init_graph(a); edge[sz] = {a, b}; sz++; } } for(int i=1; i<=N; i++){ int k = i; for(int j=LN-1; j>=0; j--){ if(p[k][j]!=0) k = p[k][j]; } if(k==i) dfs(k); } for(int i=0; i<sz; i++){ if(edge[i].first!=0 && edge[i].second!=0) printf("%d %d\n", edge[i].first, edge[i].second); } return 0; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 3 ms | 2688 KB | Output is correct |
2 | Correct | 4 ms | 2660 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 10 ms | 3200 KB | Output is correct |
2 | Correct | 11 ms | 3224 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 269 ms | 3144 KB | Output is correct |
2 | Correct | 265 ms | 3136 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 510 ms | 3892 KB | Output is correct |
2 | Correct | 609 ms | 3960 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 858 ms | 5600 KB | Output is correct |
2 | Correct | 727 ms | 6392 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 1476 ms | 11244 KB | Output is correct |
2 | Correct | 1409 ms | 11352 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 2578 ms | 12516 KB | Output is correct |
2 | Correct | 2055 ms | 12392 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 3586 ms | 14912 KB | Output is correct |
2 | Correct | 3347 ms | 14988 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 4351 ms | 14852 KB | Output is correct |
2 | Correct | 4667 ms | 14916 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Execution timed out | 5069 ms | 14144 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |