# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
154228 | 2019-09-19T11:42:20 Z | arnold518 | Pipes (CEOI15_pipes) | C++14 | 1782 ms | 65536 KB |
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<int, int> pii; typedef pair<ll, ll> pll; const int MAXN = 1e5; struct UF { int par[MAXN+10]; UF() { for(int i=0; i<=MAXN; i++) par[i]=i; } int Find(int x) { if(x==par[x]) return x; return par[x]=Find(par[x]); } void Union(int x, int y) { x=Find(x); y=Find(y); par[x]=y; } }; UF uf1, uf2; int N, M; vector<int> adj[MAXN+10]; int idx[MAXN+10], cnt=1; int dfs(int now, int bef) { idx[now]=cnt++; int ret=idx[now]; int k=0; for(int nxt : adj[now]) { if(nxt==bef) { k++; continue; } if(idx[nxt]!=0) ret=min(ret, idx[nxt]); else { int t=dfs(nxt, now); ret=min(ret, t); if(t>idx[now]) printf("%d %d\n", now, nxt); } } if(k>1) ret=min(ret, idx[bef]); return ret; } int main() { int i, j; scanf("%d%d", &N, &M); while(M--) { int u, v; scanf("%d%d", &u, &v); if(uf1.Find(u)!=uf1.Find(v)) uf1.Union(u, v), adj[u].push_back(v), adj[v].push_back(u); else if(uf2.Find(u)!=uf2.Find(v)) uf2.Union(u, v), adj[u].push_back(v), adj[v].push_back(u); } for(i=1; i<=N; i++) if(idx[i]==0) dfs(i, i); }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 5 ms | 3448 KB | Output is correct |
2 | Correct | 5 ms | 3576 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 10 ms | 3832 KB | Output is correct |
2 | Correct | 9 ms | 3704 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 138 ms | 3832 KB | Output is correct |
2 | Correct | 136 ms | 3632 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 239 ms | 4272 KB | Output is correct |
2 | Correct | 284 ms | 3964 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 406 ms | 5624 KB | Output is correct |
2 | Correct | 353 ms | 5488 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 599 ms | 9952 KB | Output is correct |
2 | Correct | 517 ms | 7036 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 898 ms | 10820 KB | Output is correct |
2 | Correct | 843 ms | 8544 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1189 ms | 12788 KB | Output is correct |
2 | Correct | 1131 ms | 8756 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1474 ms | 13212 KB | Output is correct |
2 | Correct | 1408 ms | 8776 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1782 ms | 12268 KB | Output is correct |
2 | Runtime error | 1669 ms | 65536 KB | Memory limit exceeded (if you are sure your verdict is not MLE, please contact us) |