# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
804574 | 2023-08-03T09:55:08 Z | Hanksburger | Pipes (CEOI15_pipes) | C++17 | 5000 ms | 38664 KB |
#include <bits/stdc++.h> using namespace std; int par[100005][2], tin[100005], low[100005], visited[100005], t; vector<pair<int, int> > ans; vector<int> adj[100005]; int findPar(int u, int x) { return (par[u][x]==u?u:findPar(par[u][x], x)); } void dfs(int u, int p) { tin[u]=low[u]=(++t); visited[u]=1; for (int v:adj[u]) { if (v==p) continue; if (visited[v]) low[u]=min(low[u], tin[v]); else { dfs(v, u); low[u]=min(low[u], low[v]); if (low[v]>=tin[v]) ans.push_back({u, v}); } } } int main() { ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); int n, m; cin >> n >> m; for (int i=1; i<=n; i++) par[i][0]=par[i][1]=i; for (int i=1; i<=m; i++) { int u, v, U, V; cin >> u >> v; if (findPar(u, 0)!=findPar(v, 0)) { par[par[u][0]][0]=par[v][0]; adj[u].push_back(v); adj[v].push_back(u); } else if (findPar(u, 1)!=findPar(v, 1)) { par[par[u][1]][1]=par[v][1]; adj[u].push_back(v); adj[v].push_back(u); } } for (int i=1; i<=n; i++) if (!visited[i]) dfs(i, 0); for (int i=0; i<ans.size(); i++) cout << ans[i].first << ' ' << ans[i].second << '\n'; }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 1 ms | 2644 KB | Output is correct |
2 | Incorrect | 1 ms | 2700 KB | Wrong number of edges |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 4 ms | 3376 KB | Output is correct |
2 | Incorrect | 5 ms | 3068 KB | Wrong number of edges |
3 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 210 ms | 8812 KB | Output is correct |
2 | Correct | 146 ms | 8292 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Correct | 472 ms | 14144 KB | Output is correct |
2 | Correct | 484 ms | 15004 KB | Output is correct |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 1225 ms | 23808 KB | Memory limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Runtime error | 4011 ms | 38664 KB | Memory limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Execution timed out | 5062 ms | 37972 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Execution timed out | 5061 ms | 37800 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Execution timed out | 5014 ms | 38072 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Execution timed out | 5064 ms | 38052 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |