PAT甲级1034 Head of a Gang

解法是参考的《算法笔记》,在逐渐学习stl中

#include <iostream>
#include <cstdio>
#include <map>
#include <string>
using namespace std;
const int maxn = 2010;

map<int,string>numTostr;
map<string ,int>strTOnum;
map<string,int>Gang;

int G[maxn][maxn] = {0};
int weight[maxn] = {0};

int n,k,numPerson = 0;

bool vis[maxn] = {false};
void dfs(int i,int &head,int &num,int &totalValue)
{
    vis[i] = true;
    num++;
    if(weight[i]>weight[head])
    head = i;
    for(int j = 0;j<numPerson;j++)
    {
        if(G[i][j]>0)
        {
            totalValue +=G[i][j];
            G[i][j] = G[j][i] = 0;
            if(vis[j]== false)
            dfs(j,head,num,totalValue);

        }
    }

    
}
void countBlock()
{
    for(int i = 0;i<numPerson;i++)
    {
        
        if(vis[i]==false)
        {
            int num = 0;
            int head = i;
            int totalValue =0;
            dfs(i,head,num,totalValue);
            if(num>2 && totalValue>k)
            Gang[numTostr[head]] = num;
        }
        
    }
}
int change(string str)
{
    if(strTOnum.find(str)!=strTOnum.end())
    return strTOnum[str];
    else 
    {
        strTOnum[str] = numPerson;
        numTostr[numPerson] = str;
        return numPerson++;
    }
}
int main()
{
    int w;
    string str1,str2;
    scanf("%d %d",&n,&k);
    for(int i = 0;i<n;i++)
    {
        cin>>str1>>str2>>w;
        int id1 = change(str1);
        int id2 = change(str2);
        weight[id1]+=w;
        weight[id2]+=w;
        G[id1][id2]+=w;
        G[id2][id1]+=w;
    }
    countBlock();
    printf("%d\n",Gang.size());
    map<string,int>::iterator p;
    for(p = Gang.begin();p!=Gang.end();p++)
    {
       cout<<p->first<<" "<<p->second<<endl;
    }
    return 0;

}

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值