ZOJ 1586

题目链接:[kuangbin带你飞]专题六 最小生成树 E - QS Network

//#include"stdafx.h"
#include <iostream>
#include <algorithm>
using namespace std;

struct edge{
    int s, e, w;
};

edge e[200009];
int p[10009], cost[10009];

bool cmp(edge a, edge b){ return a.w < b.w; }
int find(int x){ return p[x] == x ? x : p[x] = find(p[x]); }

void kruscal(int n, int cnt)
{
    int ans = 0;
    int flag = 0;
    for (int i = 0; i <= n; i++) p[i] = i;
    sort(e, e + cnt, cmp);

    for (int i = 0; i < cnt; i++)
    {
        int x = find(e[i].s);
        int y = find(e[i].e);
        if (x != y)
        {
            p[x] = y;
            ans += e[i].w;
            flag++;
        }
        if (flag  == n-1) break;    
    }
    cout << ans << endl;
}

int main()
{
    int m;
    cin >> m;
    while (m--)
    {
        int n, w, cnt  = 0;
        cin >> n;
        for (int i = 0; i < n; i++) cin >> cost[i];
        for (int i = 0; i < n; i++)
            for (int j = 0; j < n; j++)
            {
                cin >> w;
                if (i < j)
                {
                    e[cnt].s = i, e[cnt].e = j, e[cnt++].w = w + cost[i] + cost[j];
                }
            }
        kruscal(n, cnt);            
    }
    return 0;   
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值