zoukankan      html  css  js  c++  java
  • [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<<'
    ';
    41     }return 0;
    42 }
  • 相关阅读:
    iOS 跳转app
    Mac下安装Redis图解教程
    高性能图文混排框架,构架顺滑的iOS应用-b
    iOS的layoutSubviews和drawRect方法何时调用
    类似nike+、香蕉打卡的转场动画效果-b
    开源YYKit-b
    轻仿QQ音乐之音频歌词播放、锁屏歌词-b
    数据库事务的四大特性
    拦截器的实现
    ognl表达式
  • 原文地址:https://www.cnblogs.com/zjutlitao/p/3590404.html
Copyright © 2011-2022 走看看