CF400D.Dima and Bacteria
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Dima took up the biology of bacteria, as a result of his experiments, he invented k types of bacteria. Overall, there are n bacteria at his laboratory right now, and the number of bacteria of type i equals ci . For convenience, we will assume that all the bacteria are numbered from 1 to n . The bacteria of type ci are numbered from to
.
With the help of special equipment Dima can move energy from some bacteria into some other one. Of course, the use of such equipment is not free. Dima knows m ways to move energy from some bacteria to another one. The way with number i can be described with integers ui , vi and xi mean that this way allows moving energy from bacteria with number ui to bacteria with number vi or vice versa for xi dollars.
Dima's Chef (Inna) calls the type-distribution correct if there is a way (may be non-direct) to move energy from any bacteria of the particular type to any other bacteria of the same type (between any two bacteria of the same type) for zero cost.
As for correct type-distribution the cost of moving the energy depends only on the types of bacteria help Inna to determine is the type-distribution correct? If it is, print the matrix d with size k×k . Cell d[i][j] of this matrix must be equal to the minimal possible cost of energy-moving from bacteria with type i to bacteria with type j .
输入格式
The first line contains three integers n,m,k (1<=n<=105; 0<=m<=105; 1<=k<=500) . The next line contains k integers c1,c2,...,ck (1<=ci<=n) . Each of the next m lines contains three integers ui,vi,xi (1<=ui,vi<=105; 0<=xi<=104) . It is guaranteed that .
输出格式
If Dima's type-distribution is correct, print string «Yes», and then k lines: in the i -th line print integers d[i][1],d[i][2],...,d[i][k] (d[i][i]=0) . If there is no way to move energy from bacteria i to bacteria j appropriate d[i][j] must equal to -1. If the type-distribution isn't correct print «No».
输入输出样例
输入#1
4 4 2 1 3 2 3 0 3 4 0 2 4 1 2 1 2
输出#1
Yes 0 2 2 0
输入#2
3 1 2 2 1 1 2 0
输出#2
Yes 0 -1 -1 0
输入#3
3 2 2 2 1 1 2 0 2 3 1
输出#3
Yes 0 1 1 0
输入#4
3 0 2 1 2
输出#4
No