浙大PAT 1034 Head of aGang

来源:互联网 发布:北航软件考研分数线 编辑:程序博客网 时间:2024/06/06 14:24

1034. Head of a Gang (30)

时间限制
100 ms
内存限制
32000 kB
代码长度限制
16000 B
判题程序
Standard
作者
CHEN, Yue

One way that the police finds the head of a gang is to check people's phone calls. If there is a phone call between A and B, we say that A and B is related. The weight of a relation is defined to be the total time length of all the phone calls made between the two persons. A "Gang" is a cluster of more than 2 persons who are related to each other with total relation weight being greater than a given threthold K. In each gang, the one with maximum total weight is the head. Now given a list of phone calls, you are supposed to find the gangs and the heads.

Input Specification:

Each input file contains one test case. For each case, the first line contains two positive numbers N and K (both less than or equal to 1000), the number of phone calls and the weight threthold, respectively. Then N lines follow, each in the following format:

Name1 Name2 Time

where Name1 and Name2 are the names of people at the two ends of the call, and Time is the length of the call. A name is a string of three capital letters chosen from A-Z. A time length is a positive integer which is no more than 1000 minutes.

Output Specification:

For each test case, first print in a line the total number of gangs. Then for each gang, print in a line the name of the head and the total number of the members. It is guaranteed that the head is unique for each gang. The output must be sorted according to the alphabetical order of the names of the heads.

Sample Input 1:
8 59AAA BBB 10BBB AAA 20AAA CCC 40DDD EEE 5EEE DDD 70FFF GGG 30GGG HHH 20HHH FFF 10
Sample Output 1:
2AAA 3GGG 3
Sample Input 2:
8 70AAA BBB 10BBB AAA 20AAA CCC 40DDD EEE 5EEE DDD 70FFF GGG 30GGG HHH 20HHH FFF 10
Sample Output 2:
0

相当于一个简单的联系网,然后找出几个独立的集合,并在满足条件的集合中找到权重最大的那个节点输出即可,dfs求解,其中直接使用stl容器为数据结构。(参考了别人的思路)



#include <cstdio>#include <string>#include <map>#include <vector>#include <iostream>using namespace std;map<string,vector<string> >adjlist;map<string,int> weight;map<string,int> visit;map<string,int> res;int cnt,total;string head;void dfs(string ss){++cnt;total += weight[ss];visit[ss] = 1;if(weight[head]<weight[ss])head = ss;vector<string>::iterator it = adjlist[ss].begin();for(;it!=adjlist[ss].end();++it){if(visit[*it]==0){dfs(*it);}}}int main(){int n,k,wei,i;string sa,sb;scanf("%d %d",&n,&k);for(i=0;i<n;++i){cin>>sa>>sb>>wei;adjlist[sa].push_back(sb);adjlist[sb].push_back(sa);weight[sa] += wei;weight[sb] += wei;visit[sa] = 0;visit[sb] = 0;}map<string,int>::iterator it = visit.begin();for(;it!=visit.end();++it){if(it->second==0){head = it->first;total = 0;cnt = 0;dfs(it->first);if(cnt>2 && total/2>k)res[head] = cnt;}}printf("%d\n",res.size());it = res.begin();for(;it!=res.end();++it){cout<<it->first<<" "<<it->second<<endl;}return 0;}




0 0
原创粉丝点击