标签:problem using const content space ati 题解 can 题意
Time Limit: 5000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 12712 Accepted Submission(s): 5099
题意:给出人数n和m个相识关系,要求验证六度分离定律是不是正确(两个不相识的人最多隔6个人可以联系在一起)
题解:可以用floyd最短路来解这道题。我们假设两个认识的之间距离为1,自己和自己距离为0,算出没两个点之间的最短路,如果有两个点的最短路大于7,也就是中间超过了6个人,就说明他这组数据不符合六度分离定律。
1 #include<bits/stdc++.h> 2 using namespace std; 3 int n,m; 4 int a[105][105]; 5 const int inf=0x3f3f3f3f; 6 bool floyd() 7 { 8 for(int k=0;k<n;k++) 9 { 10 for(int i=0;i<n;i++) 11 { 12 for(int j=0;j<n;j++) 13 { 14 a[i][j]=min(a[i][j],a[i][k]+a[k][j]); 15 } 16 } 17 } 18 for(int i=0;i<n;i++) 19 { 20 for(int j=0;j<n;j++) 21 { 22 if(a[i][j]>7)return false; 23 } 24 } 25 return true; 26 } 27 void init() 28 { 29 for(int i=0;i<105;i++) 30 { 31 for(int j=0;j<105;j++) 32 { 33 a[i][j]=inf; 34 } 35 a[i][i]=0; 36 } 37 } 38 int main() { 39 while(~scanf("%d %d",&n,&m)) 40 { 41 init(); 42 for(int i=0;i<m;i++) 43 { 44 int x,y; 45 scanf("%d %d",&x,&y); 46 a[x][y]=a[y][x]=1; 47 } 48 if(floyd())printf("Yes\n"); 49 else printf("No\n"); 50 } 51 return 0; 52 }
标签:problem using const content space ati 题解 can 题意
原文地址:https://www.cnblogs.com/fqfzs/p/9898694.html