# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
675610 |
2022-12-27T13:55:31 Z |
penguin133 |
Pipes (CEOI15_pipes) |
C++17 |
|
265 ms |
65536 KB |
#include <bits/stdc++.h>
using namespace std;
#define int long long
#define pi pair<int, int>
#define pii pair<int, pi>
#define fi first
#define se second
int ret[100005], dep[100005], vis[100005];
vector<pi>v[100005];
int n, m;
inline int read() {
int v = 0;
char ch = getchar_unlocked();
while ((ch & 16) == 0) ch = getchar_unlocked();
while (ch & 16){
v = (v * 10) + (ch & 15);
ch = getchar_unlocked();
}
return v;
}
vector<pi>ans;
void dfs(int x, int p, int d){
if(vis[x])return;
vis[x] = 1;
dep[x] = d;
ret[x] = dep[x];
for(auto [i, j] : v[x]){
if(j == p)continue;
if(vis[i]){
ret[x] = min(ret[x], dep[i]);
continue;
}
dfs(i, j, d + 1);
if(ret[i] > dep[x])ans.push_back({i, x});
ret[x] = min(ret[x], ret[i]);
}
}
int32_t main(){
//ios::sync_with_stdio(0);cin.tie(0);
n = read(), m = read();
for(int i=1;i<=m;i++){
int x = read(), y = read();
v[x].push_back({y, i});
v[y].push_back({x, i});
}
for(int i=1;i<=n;i++)if(!vis[i])dfs(i, -1, 1);
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
2644 KB |
Wrong number of edges |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
4 ms |
3668 KB |
Wrong number of edges |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
50 ms |
34008 KB |
Memory limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
96 ms |
45780 KB |
Memory limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
184 ms |
65536 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
213 ms |
65536 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
226 ms |
65536 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
264 ms |
65536 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
265 ms |
65536 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
251 ms |
65536 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |