最小生成树 zoj1586 QS Network

链接: QS Network

 

G - QS Network
Time Limit:1000MS     Memory Limit:32768KB     64bit IO Format:%lld & %llu

Description

Sunny Cup 2003 - Preliminary Round

April 20th, 12:00 - 17:00

Problem E: QS Network


In the planet w-503 of galaxy cgb, there is a kind of intelligent creature named QS. QScommunicate with each other via networks. If two QS want to get connected, they need to buy two network adapters (one for each QS) and a segment of network cable. Please be advised that ONE NETWORK ADAPTER CAN ONLY BE USED IN 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 its message to all the QS it is connected with, the group of QS who receive the message broadcast the message to all the QS they connected with, the procedure repeats until all the QS's have received 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 has its favorate brand of 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 of 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 data sets.

From the second line there are 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.

In 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 are non-negative and not more than 1000.

Output

for each data set,output the minimum cost in 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

 解题思路:此题是一个最小生成树问题,用克鲁斯卡尔(Kruskal)可以解决,不过内存方面比prim算法开销较大:

题目提供了服务器的代价和连线所需的代价,我们只需把服务器的代价加入到连线的代价,然后就不需要,考虑服务器的代价了!

Kruskal解题代码:

View Code

prim解题代码:

View Code
 1 #include <iostream>
 2 #include <stdio.h>
 3 #include <math.h>
 4 #include <string.h>
 5 #include <algorithm>
 6 using namespace std;
 7 #define N 1002
 8 int map[N][N];
 9 bool b[N];
10 int r[N];
11 int n;
12 int prim()
13 {
14     int sum=0;
15     int i,k,Min;
16     int t=n;
17     while(--t)
18     {
19         Min=2222;
20         for(i=1;i<n;i++)
21          if(!b[i]&&Min>map[0][i])
22          {
23              Min=map[0][i];
24              k=i;
25          }
26         b[k]=1;
27         sum+=Min;
28         for(i=1;i<n;i++)
29         if(!b[i]&&map[k][i]<map[0][i])
30          map[0][i]=map[k][i];
31     }
32     return sum;
33 }
34 int main()
35 {
36    int i,j;
37    int t;
38    scanf("%d",&t);
39    while(t--)
40    {
41        scanf("%d",&n);
42        for(i = 0; i < n;i ++)
43            scanf("%d", &r[i]) , b[i] = 0;
44        for(i=0;i<n;i++)
45         for(j=0;j<n;j++)
46          {
47              scanf("%d",&map[i][j]);
48              if(i!=j)
49              {
50                 map[i][j]+=r[i]+r[j];
51              }
52          }
53         printf("%d\n",prim());
54    }
55    return 0;
56 }
原文地址:https://www.cnblogs.com/shengshouzhaixing/p/3033178.html