# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
232115 | DodgeBallMan | Pipes (CEOI15_pipes) | C++14 | 1855 ms | 22008 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<bits/stdc++.h>
using namespace std;
const int nmax=1e5+42;
vector< pair<int/*to*/,int/*id*/> > adj[nmax];
int in[nmax],low[nmax],t=0;
int n,m;
void dfs(int node,int par_edge)
{
if(in[node])return;
t++;
in[node]=t;
low[node]=t;
//cout<<t<<" -> "<<node<<endl;
for(auto k:adj[node])
if(k.second!=par_edge)
{
if(in[k.first]==0)dfs(k.first,k.second);
//cout<<"finished "<<node<<" "<<k.first<<" "<<low[k.first]<<endl;
if(in[node]<in[k.first]&&in[node]<low[k.first])
{
printf("%i %i\n",node,k.first);
}
else low[node]=min(low[k.first],low[node]);
}
}
int parent[2][nmax];
int main()
{
scanf("%i%i",&n,&m);
for(int i=1;i<=n;i++)
{
parent[0][i]=i;
parent[1][i]=i;
}
int u,v;
for(int i=1;i<=m;i++)
{
scanf("%i%i",&u,&v);
bool keep=0;
for(int j=0;j<2;j++)
{
int u_root=u,u_help=u,step_u=0;
while(parent[j][u_root]!=u_root)
{
u_root=parent[j][u_root];
step_u++;
}
int mem;
while(u_help!=u_root)
{
mem=parent[j][u_help];
parent[j][u_help]=u_root;
u_help=mem;
}
int v_root=v,v_help=v,step_v=0;
while(parent[j][v_root]!=v_root)
{
v_root=parent[j][v_root];
step_v++;
}
while(v_help!=v_root)
{
mem=parent[j][v_help];
parent[j][v_help]=v_root;
v_help=mem;
}
//cout<<j<<" "<<u_root<<" "<<v_root<<endl;
//for(int i=1;i<=n;i++)cout<<parent[j][i]<<" ";cout<<endl;
if(u_root==v_root)continue;
if(step_u<step_v)swap(u_root,v_root);
parent[j][v_root]=u_root;
keep=1;
break;
}
if(keep==0)continue;
adj[u].push_back({v,i});
adj[v].push_back({u,i});
//cout<<"added "<<u<<" "<<v<<endl;
}
//cout<<" --- "<<endl;
for(int i=1;i<=n;i++)
if(in[i]==0)dfs(i,0);
return 0;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |