# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
378449 | 2021-03-16T19:54:15 Z | AriaH | Pipes (CEOI15_pipes) | C++17 | 1646 ms | 18156 KB |
/** I can do this all day **/ #include <bits/stdc++.h> using namespace std; typedef long long ll; typedef long double ld; typedef pair<int,int> pii; typedef pair<ll,ll> pll; #define all(x) (x).begin(),(x).end() #define F first #define S second #define Mp make_pair #define SZ(x) (int)x.size() const int N = 1e5 + 5; const ll mod = 1e9 + 7; const ll mod2 = 998244353; const ll inf = 8e18; const int LOG = 22; int par[N * 2]; int get(int x) { return (x == par[x]? x : par[x] = get(par[x])); } int unify(int v, int u) { v = get(v), u = get(u); if(v == u) { return 0; } par[u] = v; return 1; } int n, m, H[N], Up[N]; vector < pii > G[N]; void dfs(int v, int last) { Up[v] = H[v]; for(auto y : G[v]) { int u = y.F, id = y.S; if(id == last) continue; if(H[u]) { Up[v] = min(Up[v], H[u]); } else { H[u] = H[v] + 1; dfs(u, id); if(Up[u] > H[v]) { printf("%d %d\n", v, u); } Up[v] = min(Up[v], Up[u]); } } } int main() { for(int i = 0; i < N << 1; i ++) par[i] = i; scanf("%d%d", &n, &m); int ptr = 0; for(int i = 1; i <= m; i ++) { int a, b; scanf("%d%d", &a, &b); if(unify(a, b)) { G[a].push_back(Mp(b, ++ ptr)); G[b].push_back(Mp(a, ptr)); } else { if(unify(a + n, b + n)) { G[a].push_back(Mp(b, ++ ptr)); G[b].push_back(Mp(a, ptr)); } } } for(int i = 1; i <= n; i ++) { if(H[i]) continue; H[i] = 1; dfs(i, 0); } return 0; } /** test corner cases(n = 1?) watch for overflow or minus indices **/
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 3 ms | 3436 KB | Output is correct |
2 | Correct | 3 ms | 3436 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 8 ms | 4076 KB | Output is correct |
2 | Correct | 7 ms | 3948 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 144 ms | 5996 KB | Output is correct |
2 | Correct | 140 ms | 5100 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 243 ms | 6764 KB | Output is correct |
2 | Correct | 278 ms | 5228 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 416 ms | 8704 KB | Output is correct |
2 | Correct | 349 ms | 6892 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 538 ms | 12396 KB | Output is correct |
2 | Correct | 476 ms | 8812 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 836 ms | 13676 KB | Output is correct |
2 | Correct | 843 ms | 10064 KB | Output is correct |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 1115 ms | 17332 KB | Memory limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 1380 ms | 18156 KB | Memory limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 1646 ms | 18156 KB | Memory limit exceeded |
2 | Halted | 0 ms | 0 KB | - |