博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ZOJ1586——QS Network(最小生成树)
阅读量:5158 次
发布时间:2019-06-13

本文共 3409 字,大约阅读时间需要 11 分钟。

QS Network

Description

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

题目大意:

    QS是一种外星人(雾?),他们之间需要网线和路由器来联系(大雾?)。他们每个人都有自己喜欢的路由器,并且路由器上只能接一条网线(一个路由器只能与一个人联系)。

    输入T代表几组数据。每组数据的第一行为N,表示有多少个QS人,第二行为这N个人喜欢的路由器的价格。

    后面的N行为一个N*N的矩阵,表示他们之间各自的要想联系需要的网线的价格(距离)。

    输出:保证所有人相连的最小花销。

解题思路:

    最小生成树。需要注意的是 每条边的权值不单单是网线的价格还要包括两个顶点的路由器价格。

Code:

1 #include
2 #include
3 #include
4 #include
5 #define MAXN 1010*1010/2 6 using namespace std; 7 struct edge 8 { 9 int begin;10 int end;11 int dis;12 } T[MAXN+10];13 int father[MAXN+10],a[MAXN+10];14 void init()15 {16 for (int i=1;i<=MAXN;i++)17 father[i]=i;18 }19 int find(int x)20 {21 if (father[x]!=x)22 father[x]=find(father[x]);23 return father[x];24 }25 void join(int x,int y)26 {27 int fx=find(x),fy=find(y);28 if (fx!=fy)29 father[fx]=fy;30 }31 bool cmp(struct edge a,struct edge b)32 {33 return a.dis
>C;39 while (C--)40 {41 init();42 int k=1;43 int N;44 cin>>N;45 int cnt=0;46 for (int i=1; i<=N; i++)47 cin>>a[i];48 for (int i=1; i<=N; i++)49 {50 for (int j=1; j
>T[k].dis;54 T[k].dis+=a[i]+a[j];55 k++;56 }57 for (int j=i;j<=N;j++)58 {59 int tmp;60 cin>>tmp;61 }62 }63 sort(T+1,T+k,cmp);64 int sum=0;65 for (int i=1;i

转载于:https://www.cnblogs.com/Enumz/p/3856226.html

你可能感兴趣的文章
bzoj1651[Usaco2006 Feb]Stall Reservations 专用牛棚
查看>>
spring中InitializingBean接口使用理解
查看>>
团队合作之Scrum
查看>>
关于开发和测试沟通的一些问题
查看>>
Redis教程_2
查看>>
通过java给qq邮箱发送信息
查看>>
style、currentStyle、getComputedStyle区别介绍
查看>>
Python List(列表)使用示例
查看>>
poj-3069-Saruman's Army
查看>>
webstorm的破解
查看>>
C#中创建线程,创建带参数的线程
查看>>
让 VS2010 支持 HTML5 和 CSS3.0
查看>>
eclipse 中过滤空包,目录树中不显示。
查看>>
test
查看>>
从 PHP 到 Java
查看>>
OpenOffice 实现OFFICE在线预览
查看>>
Stardew Valley(星露谷物语)Mod开发之路 写在前面
查看>>
链表使用指针充分利用内存 手打分配(摈弃系统动态分配:new/delete)
查看>>
apply,call,bind的区别
查看>>
也谈谈学习
查看>>