zoj 3710

来源:互联网 发布:苹果电脑装cad软件 编辑:程序博客网 时间:2024/06/11 19:50
Friends

Time Limit: 2 Seconds      Memory Limit: 65536 KB

Alice lives in the country where people like to make friends. The friendship is bidirectional and if any two person have no less thank friends in common, they will become friends in several days. Currently, there are totallyn 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. ThenT cases follow. For each case, the first line contains three integers n, m, k (1 ≤ n ≤ 100, 0 ≤ mn×(n-1)/2, 0 ≤kn, there will be no duplicated friendship) followed by m lines showing the current friendship. The ith friendship contains two integersui, vi (0 ≤ ui, vi <n, ui ≠ vi) indicating there is friendship between personui and vi.

Note: The edges in test data are generated randomly.

Output

For each case, print one line containing the answer.

Sample Input

34 4 20 10 21 32 35 5 20 11 22 33 44 05 6 20 11 22 33 44 02 0

Sample Output

204


题意:给n个人,m个关系,若A和B存在共同K个以上相同好友则两个结成朋友关系,问在原来给出的朋友关系图后新结成的关系有多少对

其实数据不大,暴力一下就行了,也就两种需要考虑的情况,举个例子,第一种是:0跟2结成朋友关系后才能跟1结成关系。第二种是:2跟3结成朋友关系后,1才能跟2结成朋友关系,接着触发0跟1结成朋友关系。

自己写用了一种类似回溯的办法,原本以为这两种考虑到就好了,但后来一直A不掉,看了下范围,k可以等于0,弄了下特判才过掉

#include<stdio.h>#include<string.h>#include<queue>using namespace std;int ans,n,m,k,E[105][105],vis[105],F[105];queue<int> Q;int main(void){int T,a,b;scanf("%d",&T);while(T--){memset(E,0,sizeof(E));memset(F,-1,sizeof(F));scanf("%d%d%d",&n,&m,&k);int ans=0;while(m--){scanf("%d%d",&a,&b);E[a][b]=E[b][a]=1;}if(k==0){for(int i=0;i<n;i++)for(int j=i+1;j<n;j++)if(!E[i][j]){ans++;E[i][j]=E[j][i]=1;}}else {for(int i=0;i<n;i++){if(!Q.empty())Q.pop();Q.push(i);while(!Q.empty()){int u=Q.front();Q.pop();F[u]=0;for(int j=0;j<n;j++)if(u!=j&&E[u][j])vis[F[u]++]=j;int flag=1;while(flag){flag=0;for(int j=0;j<n;j++)if(j!=u&&E[u][j]!=1&&(F[j]==-1||F[j]>=k))for(int l=0,count=0;l<F[u];l++)if(E[j][vis[l]]){count++;if(count>=k){E[u][j]=E[j][u]=1;ans++;flag=1;vis[F[u]++]=j;if(F[j]!=-1)F[j]++;if(j<i)Q.push(j);break;}}}}}}printf("%d\n",ans);}return 0;}


                                             
0 0
原创粉丝点击
热门问题 老师的惩罚 人脸识别 我在镇武司摸鱼那些年 重生之率土为王 我在大康的咸鱼生活 盘龙之生命进化 天生仙种 凡人之先天五行 春回大明朝 姑娘不必设防,我是瞎子 血氧饱和度80多怎么办 染发前洗了头发怎么办 剪了短发后悔了怎么办 短发被剪的太短怎么办 短发剪得太短怎么办 烫头发后洗头了怎么办 头发染得太黄了怎么办 烫发后一直掉发怎么办 头发染的太黄了怎么办 头发染色太浅了怎么办 怀孕60天没有胎心怎么办 染了深褐色很黑怎么办 路边停车费没交怎么办 3岁宝宝难入睡怎么办 一上火眼睛就肿怎么办 孩子上火眼睛红有眼屎怎么办 孩子眼屎多又黄怎么办 眼睛皮周围红痒怎么办 新买的拖鞋有味怎么办 毛巾变得滑滑的怎么办 买的挂钩粘不住怎么办 吸墙挂钩吸不住怎么办 沾挂钩不粘了怎么办 粘钩掉了不粘了怎么办 贴墙挂钩粘不住怎么办 月经量大血块多怎么办 23岁乳房小扁平怎么办 十六岁基本没胸怎么办 肚子上的肉松弛怎么办 17岁乳房外扩该怎么办 胸下垂严重怎么办 17岁 棉条超过8小时了怎么办 在学校来了月经怎么办 如果在学校来月经怎么办 来月经流血量大怎么办 非经期出血量多怎么办 在学校来月经了怎么办 月经好久不来了怎么办 例假推迟了20天怎么办 月经晚了13天了怎么办 大姨吗推迟十天怎么办