/*
#pragma GCC optimize("O2")
#pragma GCC optimize("Ofast")
#pragma GCC optimize("unroll-loops")
#pragma GCC target("avx,avx2,sse,sse2,fma")
*/
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef long double ld;
typedef pair<int , int> pii;
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
const int maxn = 1e5 + 100;
const ll mod = 1e9+7;
const ld PI = acos((ld)-1);
#define pb push_back
#define endl '\n'
#define dokme(x) cout << x , exit(0)
#define migmig ios::sync_with_stdio(false),cin.tie(0),cout.tie(0)
#define ms(x , y) memset(x , y , sizeof x)
ll pw(ll a, ll b, ll md = mod){ll res = 1;while(b){if(b&1){res=(a*res)%md;}a=(a*a)%md;b>>=1;}return(res);}
vector < int > par1(maxn) , par2(maxn);
vector < int > adj[maxn];
int n , m;
int getpar(int v , vector < int > &par){
return((par[v]) ? par[v] = getpar(par[v] , par) : v);
}
void merge(int v , int u){
if(getpar(u , par1) ^ getpar(v , par1))
par1[getpar(u , par1)] = getpar(v , par1);
else if(getpar(u , par2) ^ getpar(v , par2))
par2[getpar(u , par2)] = getpar(v , par2);
else
return;
adj[u].pb(v);
adj[v].pb(u);
}
void dfs(int v , int p = 0 , int h = 1){
par1[v] = par2[v] = h;
for(auto u : adj[v])if(u^p){
if(!par2[u])
dfs(u , v , h + 1) , par1[v] = min(par1[v] , par1[u]);
else
par1[v] = min(par1[v] , par2[u]);
}
if(par1[v] == h and p)
cout << v << ' ' << p << endl;
}
int32_t main(){
migmig;
cin >> n >> m;
for(int i = 1 ; i <= m ; i ++){
int u , v;
cin >> u >> v;
merge(u , v);
}
fill(par2.begin() , par2.end() , 0);
for(int i = 1 ; i <= n ; i ++)if(!par2[i])dfs(i);
return(0);
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
3436 KB |
Output is correct |
2 |
Incorrect |
3 ms |
3436 KB |
Wrong number of edges |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
7 ms |
3948 KB |
Output is correct |
2 |
Incorrect |
8 ms |
3692 KB |
Wrong number of edges |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
122 ms |
3812 KB |
Output is correct |
2 |
Incorrect |
133 ms |
3692 KB |
Wrong number of edges |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
207 ms |
4460 KB |
Wrong number of edges |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
337 ms |
5868 KB |
Output is correct |
2 |
Correct |
303 ms |
5356 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
491 ms |
10404 KB |
Output is correct |
2 |
Incorrect |
432 ms |
7020 KB |
Wrong number of edges |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
756 ms |
11484 KB |
Output is correct |
2 |
Incorrect |
742 ms |
8556 KB |
Wrong number of edges |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
993 ms |
13496 KB |
Output is correct |
2 |
Incorrect |
915 ms |
8428 KB |
Wrong number of edges |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1218 ms |
13300 KB |
Output is correct |
2 |
Incorrect |
1123 ms |
8428 KB |
Wrong number of edges |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1434 ms |
12708 KB |
Output is correct |
2 |
Correct |
1425 ms |
9964 KB |
Output is correct |