# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
1004697 |
2024-06-21T12:48:01 Z |
Valaki2 |
Pipes (CEOI15_pipes) |
C++14 |
|
869 ms |
65536 KB |
#include <bits/stdc++.h>
using namespace std;
#define pb push_back
const int maxn = 1e5;
int n, m;
vector<int> graph[1 + maxn];
int par[1 + maxn];
int sz[1 + maxn];
int par2[1 + maxn];
int sz2[1 + maxn];
void make_set2(int a) {
par2[a] = a;
sz2[a] = 1;
}
int find_set2(int a) {
if(a == par2[a]) {
return a;
}
return par2[a] = find_set2(par2[a]);
}
/*void union_sets2(int a, int b) {
a = find_set2(a), b = find_set2(b);
if(a == b) {
return;
}
if(sz2[a] < sz2[b]) {
swap(a, b);
}
par2[b] = a;
sz2[a] += sz2[b];
}*/
void make_set(int a) {
par[a] = a;
sz[a] = 1;
}
/*int find_set(int a) {
if(a == par[a]) {
return a;
}
return par[a] = find_set(par[a]);
}
void union_sets(int a, int b) {
int ax = a, bx = b;
a = find_set(a), b = find_set(b);
if(a == b) {
union_sets2(ax, bx);
return;
}
graph[ax].pb(bx);
graph[bx].pb(ax);
if(sz[a] < sz[b]) {
swap(a, b);
}
par[b] = a;
sz[a] += sz[b];
}*/
bool vis[1 + maxn];
int l[1 + maxn];
int d[1 + maxn];
int timer;
void dfs(int cur, int parent) {
timer++;
l[cur] = d[cur] = timer;
vis[cur] = true;
for(int nei : graph[cur]) {
if(nei == parent) {
continue;
}
if(vis[nei]) {
l[cur] = min(l[cur], d[nei]);
} else {
dfs(nei, cur);
l[cur] = min(l[cur], l[nei]);
if(l[nei] > d[cur] && cur <= n && nei <= n) {
cout << cur << " " << nei << "\n";
}
}
}
}
void solve() {
cin >> n >> m;
int x, y;
for(int i = 1; i <= n; i++) {
make_set(i);
}
for(int i = 1; i <= n; i++) {
make_set2(i);
}
int a, b;
for(int i = 1; i <= m; i++) {
cin >> x >> y;
//union_sets(x, y);
a = x, b = y;
while(par[a] != a) {
a = par[a];
}
while(par[b] != b) {
b = par[b];
}
if(a == b) {
a = x, b = y;
while(par2[a] != a) {
a = par2[a];
}
while(par2[b] != b) {
b = par2[b];
}
if(a == b) {
continue;
}
if(sz2[a] < sz2[b]) {
swap(a, b);
}
par2[b] = a;
sz2[a] += sz2[b];
continue;
}
graph[x].pb(y);
graph[y].pb(x);
if(sz[a] < sz[b]) {
swap(a, b);
}
par[b] = a;
sz[a] += sz[b];
}
return;
for(int i = 1; i <= n; i++) {
int j = find_set2(i) + n;
graph[i].pb(j);
graph[j].pb(i);
}
for(int i = 1; i <= 2 * n; i++) {
if(!vis[i]) {
dfs(i, -1);
}
}
}
signed main() {
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
solve();
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
1 ms |
4952 KB |
Wrong number of edges |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
3 ms |
5212 KB |
Wrong number of edges |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
78 ms |
4956 KB |
Output is correct |
2 |
Incorrect |
79 ms |
4956 KB |
Wrong number of edges |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
133 ms |
5212 KB |
Output is correct |
2 |
Incorrect |
148 ms |
5212 KB |
Wrong number of edges |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
195 ms |
5724 KB |
Output is correct |
2 |
Incorrect |
179 ms |
5972 KB |
Wrong number of edges |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
266 ms |
7256 KB |
Output is correct |
2 |
Runtime error |
242 ms |
25424 KB |
Memory limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
436 ms |
7588 KB |
Output is correct |
2 |
Runtime error |
429 ms |
40788 KB |
Memory limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
585 ms |
8020 KB |
Output is correct |
2 |
Runtime error |
546 ms |
49652 KB |
Memory limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
718 ms |
8028 KB |
Output is correct |
2 |
Runtime error |
727 ms |
61008 KB |
Memory limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
864 ms |
8020 KB |
Output is correct |
2 |
Runtime error |
869 ms |
65536 KB |
Memory limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |