找朋友

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 integers n, 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

这道题有点难理解

先说一下题的意思哈,就是说找朋友,当两个人不是朋友的时候,他们有超过k个相同的朋友那么他们就是好朋友了,问最后有几个新组成的朋友,以最后一个样例为例来看一下分析一下。0和1,2,4是朋友,1和0,2是朋友,2和3,1是朋友,3和2,4是朋友。4和0是朋友。这个时候显,0和3不是朋友,但是他们有共同的朋友是2个和k相等,所以他们也是朋友了。同理2和4也是朋友了,因为他们也有两个相同的朋友。这个时候就要注意了,事情还没有结束,因为0和3新成为朋友,这个时候1和3又称为了朋友。同理当2和4称为朋友时,1和4也称为了朋友。

所以要控制的条件是每增加一个新的朋友就要重新遍历一遍,这样就把每种情况找到一遍就行了,最后输出一个结果。

代码附上:

int main() {     int T;     while(~scanf("%d",&T))     {         while(T--)         {            int n,m,k;            int a1,a2;            int map1[105][105];            memset(map1,0,sizeof(map1));            scanf("%d%d%d",&n,&m,&k);            for(int i=0;i<m;i++)            {                scanf("%d%d",&a1,&a2);                map1[a1][a2]=map1[a2][a1]=1;            }            int ans=0,sum,flag=1;            while(flag)            {                flag=0;                for(int i=0;i<n;i++)                {                    for(int j=0;j<n;j++)                    {                        if(i!=j&&!map1[i][j])                        {                            sum=0;                          for(int k1=0;k1<n;k1++)                          {                            if(map1[i][k1]&&map1[j][k1])                                 sum++;                          }                         if(sum>=k)                         {                             map1[i][j]=map1[j][i]=1;                             flag=1; //找到一个新的朋友就让他们重新来一遍看一下是不是还有新的朋友出现                             ans++;                         }                        }                    }                }            }            printf("%d\n",ans);         }     } }

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值