트 리 8 파일 전송
3236 단어 데이터 구조
Input Specification:
Each input file contains one test case. For each test case, the first line contains N (2≤N≤104), the total number of computers in a network. Each computer in the network is then represented by a positive integer between 1 and N. Then in the following lines, the input is given in the format:
I c1 c2
where
I
stands for inputting a connection between c1
and c2
; or C c1 c2
where
C
stands for checking if it is possible to transfer files between c1
and c2
; or S
where
S
stands for stopping this case. Output Specification:
For each
C
case, print in one line the word "yes" or "no" if it is possible or impossible to transfer files between c1
and c2
, respectively. At the end of each case, print in one line "The network is connected." if there is a path between any pair of computers; or "There are k
components." where k
is the number of connected components in this network. Sample Input 1:
5
C 3 2
I 3 2
C 1 5
I 4 5
I 2 4
C 3 5
S
Sample Output 1:
no
no
yes
There are 2 components.
Sample Input 2:
5
C 3 2
I 3 2
C 1 5
I 4 5
I 2 4
C 3 5
I 1 3
C 1 5
S
Sample Output 2:
no
no
yes
yes
The network is connected.
답 은 다음 과 같다.
#include
#include
#define MAXN 10001
int FindRoot(int S[],int indix){
int temp=indix;
if(S[indix]<0) return indix;
else
for (;S[indix]>0;indix=S[indix]);
S[temp]=indix;//
return indix;
}
void Union( int S[],int indix1,int indix2){
int root1,root2;
root1=FindRoot(S,indix1);
root2=FindRoot(S,indix2);
if(root1!=root2){
/* */
if(S[root1]-S[root2]<=0){
S[root2]+=S[root1];
S[root1]=root2;
}
else{
S[root1]+=S[root2];
S[root2]=root1;
}
}
}
void IsConnect(int S[],int indix1,int indix2){
int root1,root2;
root1=FindRoot(S,indix1);
root2=FindRoot(S,indix2);
if(root1!=root2)
printf("no
");
else
printf("yes
");
}
int main(){
int N,i,j,part=0;
int S[MAXN];
scanf("%d
",&N);
int k;
for (k=1;k<=N;k++)
S[k]=-1;
char ch;
scanf("%c",&ch);
while(ch!='S'){
if(ch=='I'){
scanf("%d %d",&i,&j);
getchar();
Union(S,i,j);
}
else{
scanf("%d %d",&i,&j);
getchar();
IsConnect(S,i,j);
}
scanf("%c",&ch);
}
for (k=1;k<=N;k++)
{
if(S[k]<0)
part++;
//printf("%d ",S[k]);
}
if(part==1)
printf("The network is connected.");
else
printf("There are %d components.",part);
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
정수 반전Udemy 에서 공부 한 것을 중얼거린다 Chapter3【Integer Reversal】 (예) 문자열로 숫자를 반전 (toString, split, reverse, join) 인수의 수치 (n)가 0보다 위 또는 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.