ZOJ 1586 QS Network (Kruskal) (Basic)

Source: Internet
Author: User

Sunny Cup 2003-preliminary Round

April 20th, 12:00-17:00

Problem E:qs Network


In the planet w-503 of Galaxy CGB, there are a kind of intelligent creature named QS. Qscommunicate with all other via networks. If the QS want to get connected, the they need to buy the network adapters (one for each QS) and a segment of the network cable. Please be advised that one NETWORK ADAPTER CAN is only used in A and A single CONNECTION. (ie. if a QS want to setup four connections, it needs to buy four adapters). In the procedure of communication, a QS broadcasts their message to all the QS it was connected with, the group of QS Eive the message broadcast the message to all the "Qs they connected with," the procedure repeats until all the QS ' s has a re ceived the message.

A sample is shown below:


A sample QS network, and Qs a want to send A message.

Step 1. QS A sends message to QS B and Qs C;

Step 2. QS B sends message to QS A; QS C sends message to QS A and Qs D;

Step 3. The procedure terminates because all the QS received the message.

Each QS have its Favorate brand's network adapters and always buys the brand in all of its connections. Also the distance between QS vary. Given the price of each QS ' s favorate brand's network adapters and the price of cable between each pair of QS, your task IS-to-write a program-to-determine the minimum cost to setup a QS network.


Input

The 1st line of the input contains an integer t which indicates the number of the data sets.

From the second line there is T data sets.

In a single data set,the 1st line contains an Interger n which indicates the number of QS.

The 2nd line contains n integers, indicating the price of each QS ' s favorate network adapter.

The 3rd line to the n+2th line contain a matrix indicating the price of cable between Ecah pair of QS.

Constrains:

All the integers in the input is non-negative and not more than 1000.


Output

For each data set,output, the minimum cost of a line. NO extra empty lines needed.


Sample Input

1
3
10 20 30
0 100 200
100 0 300
200 300 0


Sample Output

370


Test instructions

First give a T, representing the T test sample, and then give an n, indicating that there are n QS device, the next line is the cost of the N QS device. Next is the N*n matrix, which represents the cost of links between each of the two QS devices. The minimum cost for all unicom.

Ideas:

Direct Kruskal, note that the cost of adding two devices directly to the recording of weights between two devices is fine. Do not add to the final sum!

Code:

12004 KB210 ms#include<iostream> #include <cstdio> #include <algorithm>using namespace Std;const    int inf=0xfffffff;typedef struct node{int l,r;    int W;    BOOL operator < (const node &a) Const {return w<a.w; }}node;node p[1000010];int pre[1010],dis[1010],qs[1010];int num,n;int Find (int x) {return Pre[x]==x?pre[x]:find (pre[x ]);}    int Union (int a,int b) {int f1=find (a), f2=find (b);        if (F1!=F2) {pre[f1]=f2;    return 1; } return 0;}    void Kruskal () {int sum=0; for (int i=0;i<num;i++) {if (!        Union (P[I].L,P[I].R)) continue;    SUM=SUM+P[I].W; } printf ("%d\n", sum);}    int main () {int t;    scanf ("%d", &t);        while (t--) {num=0;        scanf ("%d", &n);        for (int i=0;i<=n;i++) pre[i]=i;        for (int i=1;i<=n;i++) scanf ("%d", &qs[i]);        int Val;         for (int i=1;i<=n;i++) {for (int j=1;j<=n;j++)   {p[num].l=i;                P[num].r=j;                scanf ("%d", &val);            P[NUM++].W=VAL+QS[I]+QS[J];        }} sort (P,p+num);    Kruskal (); } return 0;}


Copyright NOTICE: This article for Bo Master original article, without Bo Master permission not reproduced.

ZOJ 1586QS Network (Kruskal) (base)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.