博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ZOJ 3204 Connect them (最小生成树,输出字典序最小的解)
阅读量:6327 次
发布时间:2019-06-22

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

Connect them

Time Limit: 1 Second     
Memory Limit: 32768 KB

You have n computers numbered from 1 to n and you want to connect them to make a small local area network (LAN). All connections are two-way (that is connecting computers i and j is the same as connecting computers j and i). The cost of connecting computer i and computer j is cij. You cannot connect some pairs of computers due to some particular reasons. You want to connect them so that every computer connects to any other one directly or indirectly and you also want to pay as little as possible.

Given n and each cij, find the cheapest way to connect computers.

Input

There are multiple test cases. The first line of input contains an integer T (T <= 100), indicating the number of test cases. Then T test cases follow.

The first line of each test case contains an integer n (1 < n <= 100). Then n lines follow, each of which contains n integers separated by a space. The j-th integer of the i-th line in these n lines is cij, indicating the cost of connecting computers i and j (cij = 0 means that you cannot connect them). 0 <= cij <= 60000, cij = cji, cii = 0, 1 <= i, j <= n.

Output

For each test case, if you can connect the computers together, output the method in in the following fomat:

i1j1i1j1 ......

where ik ik (k >= 1) are the identification numbers of the two computers to be connected. All the integers must be separated by a space and there must be no extra space at the end of the line. If there are multiple solutions, output the lexicographically smallest one (see hints for the definition of "lexicography small") If you cannot connect them, just output "-1" in the line.

Sample Input

230 2 32 0 53 5 020 00 0

 

Sample Output

1 2 1 3-1

 

Hints:

A solution A is a line of p integers: a1, a2, ...ap.
Another solution B different from A is a line of q integers: b1, b2, ...bq.
A is lexicographically smaller than B if and only if:
(1) there exists a positive integer r (r <= p, r <= q) such that ai = bi for all 0 < i < r and ar < br
OR
(2) p < q and ai = bi for all 0 < i <= p


Author: CAO, Peng

Source: The 6th Zhejiang Provincial Collegiate Programming Contest

 

最小生成树,要求最小字典序的解。

用kruscal算法,先排序,输出的时候也要排序。

 

/*ZOJ 3204求字典序最小的最小生成数*/#include
#include
#include
#include
using namespace std;const int MAXN=110;int F[MAXN];struct Edge{ int from,to; int w;}edge[MAXN*MAXN];int tol;Edge ans[MAXN*MAXN];int cnt;void addedge(int u,int v,int w){ edge[tol].from=u; edge[tol].to=v; edge[tol].w=w; tol++;}bool cmp1(Edge a,Edge b){ if(a.w!=b.w)return a.w

 

 

 

转载地址:http://nkgaa.baihongyu.com/

你可能感兴趣的文章
阿里云图片压缩上传代码
查看>>
JavaScript函数式编程
查看>>
C++_系列自学课程_第_6_课_bitset集_《C++ Primer 第四版》
查看>>
java对象数组
查看>>
Android中使用dimen定义尺寸(转)
查看>>
Webserver管理系列:11、注意默认的隐含共享
查看>>
《学习OpenCv》 笔记(1)
查看>>
温故而知新:Delegate,Action,Func,匿名方法,匿名委托,事件
查看>>
strtok、strtok_s、strtok_r 字符串切割函数
查看>>
shell编程基础(5)---循环指令
查看>>
八皇后问题
查看>>
.NET破解之爱奇迪(二)
查看>>
C#反射方法学习
查看>>
MD5加密解密
查看>>
.Net 转战 Android 4.4 日常笔记(6)--Android Studio DDMS用法
查看>>
SVN被锁定的几种解决方法
查看>>
js如何判断是否在iframe中及防止网页被别站用 iframe嵌套 (Load denied by X-Frame-Options)...
查看>>
ios ios7 取消控制拉升
查看>>
182在屏幕中实现网格化视图效果
查看>>
本文摘录 - FlumeJava
查看>>