[ACM_暴力] ZOJ 3710 [Friends 共同认识 最终认识 暴力]

简介:


 

 

Alice lives in the country where people like to make friends. The friendship is bidirectional and if any two person have no less than k friends in common, they will become friends in several days. Currently, there are totally n people in the country, and m friendship among them. Assume that any new friendship is made only when they have sufficient friends in common mentioned above, you are to tell how many new friendship are made after a sufficiently long time.

 

Input

There are multiple test cases.

The first lien of the input contains an integer T (about 100) indicating the number of test cases. Then T cases follow. For each case, the first line contains three integersn, m, k (1 ≤ n ≤ 100, 0 ≤ m ≤ n×(n-1)/2, 0 ≤ k ≤ n, there will be no duplicated friendship) followed by m lines showing the current friendship. The ith friendship contains two integers ui, vi (0 ≤ ui, vi < nui ≠ vi) indicating there is friendship between person ui and vi.

Note: The edges in test data are generated randomly.

Output

For each case, print one line containing the answer.

Sample Input

 

3
4 4 2
0 1
0 2
1 3
2 3
5 5 2
0 1
1 2
2 3
3 4
4 0
5 6 2
0 1
1 2
2 3
3 4
4 0
2 0

 

Sample Output

 

2
0
4

 


Author: ZHUANG, Junyuan
Contest: The 10th Zhejiang Provincial Collegiate Programming Contest

 

题目大意:给定你n个点  然后给定m条边 如果2个不相连的点和其他不小于k个点都相连,那么它们两之间就产生一条新边 问你最后一共产生多少条新边

解题思路:纯暴力解法,每次重新开始计算是否可以建立新边,直至不能建立为止。[这种暴力解法的思路值得学习一下,暴力枚举,直到状态不再变化停止]

 

复制代码
 1 #include<iostream>
 2 #include<algorithm>
 3 #include<string.h>
 4 #include<set>
 5 using namespace std;
 6 int main(){
 7     int T;
 8     cin>>T;
 9     int map[105][105];//存放关系的矩阵
10     while(T--){
11         memset(map,0,sizeof(map));
12         int n,m,k;
13         cin>>n>>m>>k;
14         for(int i=0;i<m;i++){
15             int u,v;
16             cin>>u>>v;
17             map[u][v]=1;
18             map[v][u]=1;
19         }
20 
21         bool ok=1;
22         int num=0;
23         while(ok){//纯暴解法,直至不能产生新边结束
24             ok=0;
25             for(int i=0;i<n-1;i++){
26                 for(int j=i+1;j<n;j++)if(!map[i][j]){//遍历不相连的2点
27                     int tot=0;//计算公共相连的点数
28                     for(int kk=0;kk<n;kk++)
29                         if(map[i][kk] && map[j][kk])
30                             tot++;
31                     if(tot>=k){//如果不小于k就相连
32                         num++;
33                         map[i][j]=map[j][i]=1;
34                         ok=1;
35                     }
36                 }
37             }
38         }
39 
40         cout<<num<<'\n';
41     }return 0;
42 }
复制代码
目录
打赏
0
0
0
0
23
分享
相关文章
初阶OI素数算法——埃拉托尼斯筛
时间复杂度比较优秀且易于理解的素数筛选法
99 0
Easy Number Challenge(埃式筛思想+优雅暴力)
Easy Number Challenge(埃式筛思想+优雅暴力)
97 0
HDU-4348 To the moon(主席树区间修改 永久化标记)
HDU-4348 To the moon(主席树区间修改 永久化标记)
161 0
HDU-4348 To the moon(主席树区间修改 永久化标记)
HDU-2566,统计硬币(暴力 or DP)
HDU-2566,统计硬币(暴力 or DP)
codeforces1141D Colored Boots(暴力+贪心)
codeforces1141D题解(暴力+贪心)
932 0
Codeforces 839A Arya and Bran【暴力】
A. Arya and Bran time limit per test:1 second memory limit per test:256 megabytes input:standard input output:standard outpu...
995 0
Codeforces Round #336 (Div. 2)【A.思维,暴力,B.字符串,暴搜,前缀和,C.暴力,D,区间dp,E,字符串,数学】
A. Saitama Destroys Hotel time limit per test:1 second memory limit per test:256 megabytes input:standard input output:stand...
1231 0
AI助理

你好,我是AI助理

可以解答问题、推荐解决方案等