# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
959297 | 2024-04-07T23:05:12 Z | Cyber_Wolf | Pipes (CEOI15_pipes) | C++17 | 915 ms | 48444 KB |
#include <bits/stdc++.h> using namespace std; const int N = 1e5+5; vector<int> adj[N]; int tin[N], par[N][2], low[N]; int get1(int src) { if(src == par[src][0]) return src; return par[src][0] = get1(par[src][0]); } bool join1(int u, int v) { u = get1(u), v = get1(v); if(u == v) return false; par[u][0] = v; return true; } int get2(int src) { if(src == par[src][1]) return src; return par[src][1] = get2(par[src][1]); } bool join2(int u, int v) { u = get2(u), v = get2(v); if(u == v) return false; par[u][1] = v; return true; } int n, m, tmp; void dfs(int src, int pa = -1) { bool a = 0; tin[src] = low[src] = ++tmp; for(auto it : adj[src]) { if(it == pa && !a) { a = 1; continue; } if(tin[it]) { low[src] = min(low[src], tin[it]); continue; } dfs(it, src); low[src] = min(low[src], low[it]); if(low[it] > tin[src]) { printf("%d %d\n", src, it); } } return ; } int main() { ios_base::sync_with_stdio(0); cin.tie(0); cout.tie(0); scanf("%d%d", &n, &m); for(int i = 1; i <= n; i++) par[i][0] = par[i][1] = i; int u, v; while(m--) { scanf("%d%d", &u, &v); if(join1(u, v) || join2(u, v)) { adj[u].push_back(v), adj[v].push_back(u); } } for(int i = 1; i <= n; i++) { if(!tin[i]) dfs(i); } return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 2 ms | 4188 KB | Output is correct |
2 | Correct | 1 ms | 4188 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 4 ms | 4700 KB | Output is correct |
2 | Correct | 5 ms | 4404 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 104 ms | 7796 KB | Output is correct |
2 | Correct | 87 ms | 7744 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 140 ms | 10532 KB | Output is correct |
2 | Correct | 161 ms | 10836 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 250 ms | 15152 KB | Output is correct |
2 | Correct | 194 ms | 13460 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 330 ms | 22260 KB | Memory limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 480 ms | 29268 KB | Memory limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 622 ms | 36532 KB | Memory limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 776 ms | 42332 KB | Memory limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 915 ms | 48444 KB | Memory limit exceeded |
2 | Halted | 0 ms | 0 KB | - |