CodeForces 25D - Roads not only in Berland
4141 단어 함께 조사하여 모으다codeforces
#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
int pre[1005];
struct Node{
int u,v;
}a[1005];
int find(int x){
if(x!=pre[x]){
pre[x]=find(pre[x]);
}
return pre[x];
}
void join(int x,int y){
int i=find(x);
int j=find(y);
pre[i]=j;
}
int main(){
int n;
while(~scanf("%d",&n)){
int cnt=0;
for(int i=0;i<=n;i++){
pre[i]=i;
}
for(int i=0;i<n-1;i++){
int x,y;
scanf("%d %d",&x,&y);
if(find(x)==find(y)){
a[cnt].u=x;
a[cnt].v=y;
cnt++;
}
else{
join(x,y);
}
}
printf("%d
",cnt);
int sum=0;
for(int i=1;i<=n;i++){
for(int j=1;j<=n;j++){
if(find(i)!=find(j)){
printf("%d %d %d %d
",a[sum].u,a[sum].v,i,j);
join(i,j);
sum++;
if(sum==cnt) break;
}
}
}
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
POJ 2236 Wireless Network 간편한 검색 및 수집The ACM (Asia Cooperated Medical team) have set up a wireless network with the lap computers, but an unexpected aftersho...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.