# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
44875 | 2018-04-08T20:30:02 Z | bogdan10bos | Pipes (CEOI15_pipes) | C++14 | 2207 ms | 65536 KB |
#include <bits/stdc++.h> using namespace std; //#define FILE_IO typedef pair<int, int> pii; int N, M; int K, vis[100005], lst[100005]; vector<int> nodes, edg[100005]; vector<pii> critical; pii q[100005]; class UnionFind { public: int N; int f[100005]; void init(int _N) { N = _N; for(int i = 1; i <= N; i++) f[i] = i; } int F(int x) { if(f[x] == x) return x; return f[x] = F(f[x]); } void unite(int x, int y) { if(F(x) == F(y)) return; f[F(y)] = F(x); } }; UnionFind f[2]; int main() { #ifdef FILE_IO freopen("1.in", "r", stdin); freopen("1.out", "w", stdout); #endif scanf("%d%d", &N, &M); f[0].init(N), f[1].init(N); for(int i = 1; i <= M; i++) { assert(critical.size() <= N); int x, y; scanf("%d%d", &x, &y); if(f[0].F(x) != f[0].F(y)) { critical.push_back({x, y}); f[0].unite(x, y); int fx = f[1].F(x); int fy = f[1].F(y); edg[fx].push_back(fy); edg[fy].push_back(fx); continue; } if(f[1].F(x) == f[1].F(y)) continue; x = f[1].F(x); y = f[1].F(y); nodes.clear(); nodes.push_back(x); nodes.push_back(y); K += 2; vis[x] = K; vis[y] = K + 1; int st = 1, dr = 2; q[1] = {x, K}; q[2] = {y, K + 1}; while(st <= dr) { int nod = q[st].first; int id = q[st].second; st++; for(auto nxt: edg[nod]) { nxt = f[1].F(nxt); if(vis[nxt] == id) continue; if(vis[nxt] == (id ^ 1)) { int nd1 = nod; int nd2 = nxt; if(vis[nod] != K) swap(nd1, nd2); while(nd1 != x) { nodes.push_back(nd1); nd1 = lst[nd1]; } while(nd2 != y) { nodes.push_back(nd2); nd2 = lst[nd2]; } st = dr + 1; break; } vis[nxt] = vis[nod]; lst[nxt] = nod; q[++dr] = {nxt, id}; } } for(int i = 1; i < nodes.size(); i++) { f[1].unite(nodes[0], nodes[i]); for(auto x: edg[ nodes[i] ]) if(f[1].F(x) != f[1].F(nodes[0])) edg[ nodes[0] ].push_back(x); edg[ nodes[i] ].clear(); } for(int i = 0; i < edg[ nodes[0] ].size(); i++) { if(f[1].F( nodes[0] ) == f[1].F( edg[ nodes[0] ][i])) { edg[ nodes[0] ].erase(edg[ nodes[0] ].begin() + i); i--; } } for(int i = 0; i < critical.size(); i++) if( f[1].F(critical[i].first) == f[1].F(critical[i].second) ) { critical.erase(critical.begin() + i); i--; } } for(auto e: critical) if(f[1].F(e.first) != f[1].F(e.second)) printf("%d %d\n", e.first, e.second); return 0; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 4 ms | 2688 KB | Output is correct |
2 | Correct | 4 ms | 2688 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 38 ms | 7160 KB | Output is correct |
2 | Correct | 25 ms | 3448 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 133 ms | 5860 KB | Output is correct |
2 | Correct | 122 ms | 3192 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 357 ms | 21744 KB | Memory limit exceeded (if you are sure your verdict is not MLE, please contact us) |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 823 ms | 65536 KB | Execution killed with signal 9 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 1635 ms | 65536 KB | Execution killed with signal 9 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 1791 ms | 65536 KB | Execution killed with signal 9 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 2207 ms | 65536 KB | Execution killed with signal 9 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 2131 ms | 65536 KB | Execution killed with signal 9 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 2056 ms | 65536 KB | Execution killed with signal 9 (could be triggered by violating memory limits) |
2 | Halted | 0 ms | 0 KB | - |