ZOJ 1586 QS Network (classic Mst~prim)

Source: Internet
Author: User
Tags cas

Links: http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=586

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


Analysis:

In the construction of the network, each edge of the weight of two QS adapter price plus the two QS between the price of the network cable, and do not need to record the construction of the minimum spanning tree selected edge;


Code:

#include <iostream> #include <cstdio> #include <cstring> #include <cstdlib> #include <queue      > #define MAXN 1005#define INF 0x1f1f1f1f#define RST (n) memset (n, 0, sizeof (n)) using namespace Std;int N, res, CAS;    QS Adapter number, result, test data group; int LOWCOST[MAXN];    acts as a function of the two arrays lowcost and Near_vex in the prim algorithm; int ADAPT[MAXN];  The price of each QS-like adapter; int EDGE[MAXN][MAXN];    Adjacency matrix; void Init () {scanf ("%d", &n);   for (int i=0; i<n; i++) scanf ("%d", &adapt[i]); Enter price, for (int i=0; i<n; i++) {for (int j=0; j<n; J + +) {//adjacency matrix initialization; scanf ("%d", &edge[i            ][J]);            if (i = = j) Edge[i][j] = INF;        else Edge[i][j] + = (adapt[i]+adapt[j]); }} RST (lowcost), res = 0;}    void Prim ()//prim algorithm core; {Lowcost[0] =-1;    Constructs the smallest spanning tree starting from Vertex 0; for (int i=1; i<n; i++) lowcost[i] = Edge[0][i];         for (int i=1; i<n; i++) {//To extend other n-1 vertices into the spanning tree; int min = INF, k;     for (int j=0; j<n; J + +) {//To find the least-weighted edge of the current available value;       if (lowcost[j]! =-1 && lowcost[j] < min) {k = J;            min = Lowcost[j];        }} res + = min;    LOWCOST[K] =-1;        Extend the vertex k in, for (int i=0; i<n; i++) if (Edge[k][i] < Lowcost[i]) {lowcost[i] = Edge[k][i]; }} printf ("%d\n", res);}    int main () {scanf ("%d", &cas);    while (cas--) {Init (), Prim (); } return 0;}


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.