//
// main.cpp
// C
//
// Created by Sajad Zare on 4/23/22.
//
#include <iostream>
#include <math.h>
#include <string>
#include <string.h>
#include <vector>
#include <cstring>
#include <stack>
#include <queue>
#include <set>
#include <map>
#include <deque>
#include <utility>
#include <cmath>
#include <algorithm>
#include <tuple>
#include <numeric>
#include <iomanip>
#include <bitset>
using namespace std;
const int maxn=1e5+2;
int parent[maxn];
int parent2[maxn];
//int sz[maxn];
//int sz2[maxn];
bitset<maxn>seen;
int st[maxn];
//int parent3[maxnn];
int lowest[maxn];
int tmm=0;
vector<int> N[maxn];
vector<pair<int, int>>t1;
vector<pair<int, int>>t2;
//map<pair<int, int>, int>sss;
int x,y;
int get_root(int v){
if (parent[v]!=v){
parent[v]=get_root(parent[v]);
}
return parent[v];
}
int get_root2(int v){
if (parent2[v]!=v){
parent2[v]=get_root2(parent2[v]);
}
return parent2[v];
}
bool Union(int u,int v){
u=get_root(u);
v=get_root(v);
if (u==v){
return 1;
}
parent[u]=v;
return 0;
}
bool Union2(int u,int v){
x=u;
y=v;
u=get_root2(u);
v=get_root2(v);
if (u==v){
return 0;
}
t2.push_back({x,y});
parent2[u]=v;
return 1;
}
void dfs(int node,int pp){
seen[node]=1;
tmm+=1;
st[node]=tmm;
lowest[node]=tmm;
//stft.push_back(node);
for (int n: N[node]){
if (seen[n]!=1){
//parent3[n]=node;
dfs(n,node);
lowest[node]=min(lowest[node], lowest[n]);
if (lowest[n]>st[node] && count(N[node].begin(),N[node].end(),n)==1){
cout << node << ' ' << n << "\n";
}
}
else if (n!=pp){
lowest[node]=min(lowest[node],st[n]);
}
}
//ft[node]=t;
//stft.push_back(node);
}
//const int M = 1000000007;
int main(){
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int n,m;
cin >> n >> m;
for (int i=1;i<n+1;i++){
parent[i]=i;
//sz[i]=1;
}
for (int i=1;i<n+1;i++){
parent2[i]=i;
//sz2[i]=1;
}
int u,v;
for (int i=0;i<m;i++){
cin >> u >> v;
if (Union(u, v)){
Union2(u, v);
}
else{
t1.push_back({u,v});
}
}
int f,ff;
//int startnode=t1[0].first;
for (int i=0;i<t1.size();i++){
f=t1[i].first;
ff=t1[i].second;
N[f].push_back(ff);
N[ff].push_back(f);
//sss[{f,ff}]=1;
}
for (int i=0;i<t2.size();i++){
f=t2[i].first;
ff=t2[i].second;
/*
if (sss.find({f,ff})==sss.end()){
sss[{f,ff}]=1;
N[f].push_back(ff);
N[ff].push_back(f);
}
else{
sss[{f,ff}]=2;
}
*/
N[f].push_back(ff);
N[ff].push_back(f);
}
//cout << startnode << endl;
for (int i=1;i<n+1;i++){
if (seen[i]!=1){
dfs(i,-1);
}
}
return 0;
}
Compilation message
pipes.cpp: In function 'int main()':
pipes.cpp:124:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
124 | for (int i=0;i<t1.size();i++){
| ~^~~~~~~~~~
pipes.cpp:131:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<std::pair<int, int> >::size_type' {aka 'long unsigned int'} [-Wsign-compare]
131 | for (int i=0;i<t2.size();i++){
| ~^~~~~~~~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
2644 KB |
Output is correct |
2 |
Correct |
1 ms |
2644 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
5 ms |
3284 KB |
Output is correct |
2 |
Correct |
4 ms |
3028 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
78 ms |
3184 KB |
Output is correct |
2 |
Correct |
82 ms |
2932 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
134 ms |
4060 KB |
Output is correct |
2 |
Correct |
159 ms |
3408 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
258 ms |
6052 KB |
Output is correct |
2 |
Correct |
189 ms |
5588 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
320 ms |
12680 KB |
Output is correct |
2 |
Correct |
279 ms |
8540 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
551 ms |
14036 KB |
Output is correct |
2 |
Correct |
429 ms |
10556 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
631 ms |
16776 KB |
Memory limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
754 ms |
16764 KB |
Memory limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
912 ms |
16020 KB |
Output is correct |
2 |
Correct |
851 ms |
12652 KB |
Output is correct |