PAT甲级真题 1034 Head of a Gang (30分)(用map数组模拟,注意测试点4)

这篇博客介绍了一种通过分析电话记录来寻找帮派及其头目的算法。利用哈希表记录每个人的通话时长,通过判断关系权重超过阈值K的群组来形成帮派,最后找到每个帮派中通话时长最长的人作为头目。博客提供了样例输入和输出,以及解题思路和关键测试点4的注意事项。
摘要由CSDN通过智能技术生成

题目

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 threshold 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 59
AAA BBB 10
BBB AAA 20
AAA CCC 40
DDD EEE 5
EEE DDD 70
FFF GGG 30
GGG HHH 20
HHH FFF 10
Sample Output 1:
2
AAA 3
GGG 3
Sample Input 2:
8 70
AAA BBB 10
BBB AAA 20
AAA CCC 40
DDD EEE 5
EEE DDD 70
FFF GGG 30
GGG HHH 20
HHH FFF 10
Sample Output 2:
0

思路

map<stirng, int>数组记录所有帮派,每个帮派以人名为key,以通话时间为value;每有一组通话,看双方是否已经属于某个帮派,若没有,则建立新的map加入二者,并将新map加入数组;若双方已属于某帮派,则累加双方在该map中的通话时长,注意若另一方是否也已属于另外一个帮派,则需将两个帮派合并,否则测试点4会报错。

测试点4测试用例:

7 59
AAA BBB 10
BBB AAA 20
AAA CCC 40
FFF GGG 30
GGG HHH 20
HHH FFF 10
AAA FFF 10

应输出:

1
AAA 6

最后遍历所有map,首先排除点元素数小于等于2的;然后累加所有元素值除以2(每个人的通话计算了2遍),即是总通话时长,若超过了K则属于帮派,其中值最大的就是boss,将boss名字和帮派人数加入组成结构体加入vector中;最后对vector按姓名排序即可。

柳神使用的方法是以人名为节点建立图,用dfs找出不同的连通分支即是各个帮派:1034. Head of a Gang (30)-PAT甲级真题(图的遍历dfs)

代码

#include <iostream>
#include <vector>
#include <unordered_map>
#include <algorithm>
using namespace std;

struct Head{
   
    string name;
    int num;
};
bool cmp(Head h1, Head h2){
   
    return h1
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值