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
Prime algorithm bare title ...
The following code is attached
#include <iostream> #include <cstdio> #include <cstring> #include <algorithm> #define INF 99999999using namespace Std;int map[1010][1010],vis[1010],lowcost[1010],p[1010];int main () {int t,n,i,j,k,sum,w; while (scanf ("%d", &t)!=eof) {and (t--) {scanf ("%d", &n); for (i=1;i<=n;i++) {cin>>p[i];vis[i]=0;} for (i=1;i<=n;i++) {for (j=1;j<=n;j++) {cin>>w;w=w+p[i]+p[j];map[i][j]=inf;if (i!=j) map[i][j]=w;}} K=-1;sum=0;vis[1]=1;for (i=1;i<=n;i++) lowcost[i]=map[1][i];for (i=1;i<=n;i++) {int temp=inf;for (j=1;j<=n; J + +) {if (!vis[j] && lowcost[j]<temp) {k=j;temp=lowcost[j];}} if (Temp==inf) break;vis[k]=1;sum+=temp;for (j=1;j<=n;j++) {if (!vis[j] && lowcost[j]>map[k][j]) { LOWCOST[J]=MAP[K][J];}}} printf ("%d\n", Sum);}} return 0;}
Copyright NOTICE: This article for Bo Master original article, without Bo Master permission not reproduced.
ZOJ QS Network (prime_ bare title)