#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair <int, int> pii;
typedef pair <long double, pii> muchie;
const ll NMAX = 100001;
const ll VMAX = 1000001;
const ll INF = (1LL << 60);
const ll MOD = 1000000007;
const ll BLOCK = 1000000;
const ll nr_of_bits = 16;
vector <int> v[NMAX];
int root;
int lvl[NMAX];
int parent[NMAX];
int parentB[NMAX];
int findR(int a){
if(parent[a] == a)
return a;
return parent[a] = findR(parent[a]);
}
int findRB(int a){
if(parentB[a] == a)
return a;
return parentB[a] = findRB(parentB[a]);
}
void unite(int a, int b){
a = findR(a);
b = findR(b);
parent[a] = b;
}
void uniteB(int a, int b){
a = findRB(a);
b = findRB(b);
parentB[a] = b;
}
map <int, int> dp;
void DFS(int node, int p){
lvl[node] = lvl[p] + 1;
for(auto x : v[node]){
if(lvl[x] == 0){
DFS(x, node);
}else if(lvl[x] > lvl[node]){
dp[node]--;
}else{
dp[node]++;
}
}
if(node != root){
dp[node]--;
}
dp[p] += dp[node];
if(dp[node] == 0 && node != root){
cout << node << " " << p << "\n";
}
dp.erase(node);
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int n, m, i;
cin >> n >> m;
for(i = 1; i <= n; i++){
parent[i] = i;
parentB[i] = i;
}
for(i = 1; i <= m; i++){
int a, b;
cin >> a >> b;
if(findR(a) != findR(b)){
v[a].push_back(b);
v[b].push_back(a);
unite(a, b);
}else if(findRB(a) != findRB(b)){
v[a].push_back(b);
v[b].push_back(a);
uniteB(a, b);
}
}
for(i = 1; i <= n; i++){
if(!lvl[i]){
root = i;
DFS(root, 0);
}
}
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
2644 KB |
Output is correct |
2 |
Correct |
1 ms |
2644 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
8 ms |
3156 KB |
Output is correct |
2 |
Correct |
6 ms |
2900 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
85 ms |
2956 KB |
Output is correct |
2 |
Correct |
110 ms |
2824 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
167 ms |
3764 KB |
Output is correct |
2 |
Correct |
178 ms |
3236 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
262 ms |
5340 KB |
Output is correct |
2 |
Correct |
220 ms |
4908 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
432 ms |
10764 KB |
Output is correct |
2 |
Correct |
375 ms |
6916 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
602 ms |
11916 KB |
Output is correct |
2 |
Correct |
525 ms |
9028 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
820 ms |
14096 KB |
Output is correct |
2 |
Correct |
742 ms |
8740 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
948 ms |
14088 KB |
Output is correct |
2 |
Correct |
860 ms |
8752 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1126 ms |
13592 KB |
Output is correct |
2 |
Correct |
997 ms |
10508 KB |
Output is correct |