# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
948551 |
2024-03-18T07:51:25 Z |
huyboy |
Pipes (CEOI15_pipes) |
C++17 |
|
97 ms |
16272 KB |
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
const short N = 5000;
vector<pair<short,int>> g[N];
vector<short> tin(N), low(N);
void dfs(short v, short p, vector<bool>& vis, short& timer) {
vis[v] = true;
tin[v] = low[v] = timer++;
for (auto [to, check] : g[v]) {
if (check == p)
continue;
if(vis[to]){
low[v] = min(low[v], low[to]);
} else{
dfs(to, check, vis, timer);
low[v] = min(low[v], low[to]);
if (low[to] > tin[v])
cout << v << " " << to << "\n";
}
}
}
void solve(){
short n;
int m;
cin >> n >> m;
for(int i = 0; i < m; i++){
short a, b;
cin >> a >> b;
g[a].emplace_back(b, i);
g[b].emplace_back(a, i);
}
vector<bool> vis(n, false);
short timer = 0;
for(short i = 0; i < n; i++){
if(!vis[i]){
dfs(i, -1, vis, timer);
}
}
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
cout.tie(nullptr);
int t = 1;
// cin >> t;
while(t--){
solve();
}
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
0 ms |
348 KB |
Output is correct |
2 |
Correct |
0 ms |
348 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
3 ms |
1112 KB |
Output is correct |
2 |
Correct |
3 ms |
860 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
97 ms |
16272 KB |
Output is correct |
2 |
Incorrect |
90 ms |
15632 KB |
Wrong number of edges |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
1 ms |
860 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
1 ms |
860 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
1 ms |
856 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
1 ms |
860 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
1 ms |
856 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
1 ms |
860 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
1 ms |
1112 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |