# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
223902 | MKopchev | Pipes (CEOI15_pipes) | C++14 | 1797 ms | 24068 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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;
}
컴파일 시 표준 에러 (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... |