# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
560685 |
2022-05-11T22:54:00 Z |
urosk |
Pipes (CEOI15_pipes) |
C++14 |
|
937 ms |
16276 KB |
// __builtin_popcount(x)
// __builtin_popcountll(x)
#define here cerr<<"===========================================\n"
#include <bits/stdc++.h>
#define ld double
#define ll int
#define ull unsigned long long
#define llinf 100000000000000000LL // 10^17
#define iinf 2000000000 // 2*10^9
#define pb push_back
#define popb pop_back
#define fi first
#define sc second
#define endl '\n'
#define pii pair<int,int>
#define pll pair<ll,ll>
#define pld pair<ld,ld>
#define sz(a) int(a.size())
#define all(a) a.begin(),a.end()
#define ceri(a,l,r) {for(ll i_ = l;i_<=r;i_++) cerr<<a[i_]<< " ";cerr<<endl;}
using namespace std;
#define maxn 100005
ll n,m;
ll dsu[maxn];
ll dsu2[maxn];
vector<ll> g[maxn];
ll low[maxn];
ll in[maxn];
vector<pll> bridge;
bool vis[maxn];
ll root(ll x,ll* dsu){
while(x!=dsu[x]){
dsu[x] = dsu[dsu[x]];
x = dsu[x];
}
return x;
}
void upd(ll x,ll y,ll* dsu){
x = root(x,dsu);
y = root(y,dsu);
dsu[y] = x;
}
bool get(ll x,ll y,ll* dsu){return root(x,dsu)==root(y,dsu);}
ll it = 1;
void dfs(ll u,ll par){
in[u] = low[u] = it++;
vis[u] = 1;
bool bio = 0;
for(ll s : g[u]){
if(s==par&&!bio){bio = 1;continue;}
if(!vis[s]) dfs(s,u);
low[u] = min(low[u],low[s]);
}
if(low[u]>=in[par]) bridge.pb({u,par});
}
int main(){
ios_base::sync_with_stdio(false);cerr.tie(0);cout.tie(0);cin.tie(0);
cin >> n >> m;
iota(dsu+1,dsu+n+1,1);
iota(dsu2+1,dsu2+n+1,1);
vector<pll> v;
for(ll i = 1;i<=m;i++){
ll x,y; cin >> x >> y;
if(get(x,y,dsu)){
if(get(x,y,dsu2)) continue;
upd(x,y,dsu2);
}else upd(x,y,dsu);
g[x].pb(y);
g[y].pb(x);
v.pb({x,y});
}
for(ll i = 1;i<=n;i++) if(!vis[i]) dfs(i,i);
for(pll p : bridge) cout<<p.fi<< " "<<p.sc<<endl;
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
2 ms |
2644 KB |
Wrong number of edges |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
5 ms |
3412 KB |
Wrong number of edges |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
84 ms |
3548 KB |
Wrong number of edges |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
135 ms |
4468 KB |
Wrong number of edges |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
228 ms |
6244 KB |
Wrong number of edges |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
321 ms |
11768 KB |
Wrong number of edges |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
497 ms |
13148 KB |
Wrong number of edges |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
687 ms |
15684 KB |
Wrong number of edges |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
796 ms |
15688 KB |
Wrong number of edges |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
937 ms |
16276 KB |
Wrong number of edges |
2 |
Halted |
0 ms |
0 KB |
- |