# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1026978 | 2024-07-18T16:17:41 Z | vjudge1 | Pipes (CEOI15_pipes) | C++17 | 627 ms | 65536 KB |
#include <bits/stdc++.h> #define ll long long using namespace std; const int N = 1e5; vector < int > adj[N + 2]; struct dsu{ int par[N + 2]; int find_par(const 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 par2.union_set(u , v); } for(int i = 1; i <= n; i ++){ if(par2.par[i] > 0 ){ int p = i; p = par2.find_par(p); adj[i].push_back(p); adj[p].push_back(i); } } 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 , i); } } 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 | 3416 KB | Output is correct |
2 | Incorrect | 1 ms | 3416 KB | Wrong number of edges |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 3 ms | 3676 KB | Wrong number of edges |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 50 ms | 3676 KB | Wrong number of edges |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 76 ms | 3924 KB | Output is correct |
2 | Incorrect | 110 ms | 15188 KB | Wrong number of edges |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 153 ms | 4432 KB | Output is correct |
2 | Incorrect | 126 ms | 4436 KB | Wrong number of edges |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 196 ms | 6348 KB | Output is correct |
2 | Correct | 187 ms | 15424 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 301 ms | 6848 KB | Output is correct |
2 | Runtime error | 315 ms | 23288 KB | Memory limit exceeded |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 408 ms | 7372 KB | Wrong number of edges |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 479 ms | 7372 KB | Wrong number of edges |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 582 ms | 7168 KB | Output is correct |
2 | Runtime error | 627 ms | 65536 KB | Memory limit exceeded |
3 | Halted | 0 ms | 0 KB | - |