# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1026966 | 2024-07-18T15:36:16 Z | vjudge1 | Pipes (CEOI15_pipes) | C++17 | 634 ms | 65536 KB |
#include <bits/stdc++.h> #define ll long long using namespace std; const int N = 1e5 + 2; vector < int > adj[N + 2]; struct dsu{ int par[N + 2]; int find_par(int u){ if(par[u] < 0)return u; par[u] = find_par(par[u]); return par[u]; } bool union_set(int u , int v){ u = find_par(u); v = find_par(v); if(u != v){ if(par[u] > par[v])swap(u , v); par[u] += par[v]; par[v] = u; return true; } return false; } } par1 , par2; int timer = 0; void dfs(int u , int p){ par1.par[u] = par2.par[u] = ++timer; for(int v:adj[u]){ if(v == p) continue; if(!par2.par[v]){ dfs(v , u); par1.par[u] = min(par1.par[u] , par1.par[v]); if(par1.par[v] == par2.par[v]) cout << u << " " << v <<'\n'; } else par1.par[u] = min(par1.par[u] , par2.par[v]); } } void solve() { int n , m; cin >> n >> m; memset(par1.par , -1 , sizeof(par1.par)); memset(par2.par , -1 , sizeof(par2.par)); for(int i = 1; i <= m ;i ++){ int u , v; cin >> u >> v; if(par1.union_set(u , v)){ adj[u].push_back(v); adj[v].push_back(u); } else if(par2.union_set(u , v)){ adj[u].push_back(v); adj[v].push_back(u); } } memset(par1.par , 0 , sizeof(par1.par)); memset(par2.par , 0 , sizeof(par2.par)); for(int i = 1; i <= n ; i++){ if(!par2.par[i])dfs(i , 0); } } signed main() { ios::sync_with_stdio(0), cin.tie(0); #define _ "maxseq." if (fopen(_ "inp", "r")) { freopen(_ "inp", "r", stdin); freopen(_ "out", "w", stdout); } solve(); }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 3420 KB | Output is correct |
2 | Incorrect | 1 ms | 3420 KB | Wrong number of edges |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 3 ms | 3928 KB | Output is correct |
2 | Incorrect | 3 ms | 3672 KB | Wrong number of edges |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 57 ms | 9224 KB | Output is correct |
2 | Incorrect | 64 ms | 9044 KB | Wrong number of edges |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 96 ms | 14180 KB | Wrong number of edges |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 163 ms | 22100 KB | Memory limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 217 ms | 31580 KB | Memory limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 314 ms | 45332 KB | Memory limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 457 ms | 58008 KB | Memory limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 544 ms | 65536 KB | Memory limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 634 ms | 65536 KB | Memory limit exceeded |
2 | Halted | 0 ms | 0 KB | - |