CF317C.Balance
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
A system of n vessels with water is given. Several pairs of vessels are connected by tubes with transfusion mechanisms. One may transfer an integer amount of liters of water between two vessels connected by such tube (tube works in both directions). There might be multiple tubes between two vessels. Total number of tubes equals e . Volume of each vessel equals v liters. Of course, the amount of the water in any vessel cannot exceed v liters in the process of transfusions.
Given the initial amounts ai of water in the vessels and the desired amounts bi find a sequence of transfusions that deals with the task. Total number of transfusions must not exceed 2⋅n2 .
输入格式
First line of the input contains integers n , v , e ( 1<=n<=300 , 1<=v<=109 , 0<=e<=50000 ).
Next two lines contain n integers each: initial ai and the desired amounts bi of water in corresponding vessels ( 0<=ai,bi<=v ).
Next e lines describe one tube each in the format x y ( 1<=x,y<=n,x=y ) for a tube between vessels number x and y . There might be multiple tubes between two vessels. You may assume that vessels are numbered from 1 to n in some way.
输出格式
Print "NO" (without quotes), if such sequence of transfusions does not exist.
Otherwise print any suitable sequence in the following format. On the first line print the total number of transfusions k ( k should not exceed 2⋅n2 ). In the following k lines print transfusions in the format x y d (transfusion of d liters from the vessel number x to the vessel number y , x and y must be distinct). For all transfusions d must be a non-negative integer.
输入输出样例
输入#1
2 10 1 1 9 5 5 1 2
输出#1
1 2 1 4
输入#2
2 10 0 5 2 4 2
输出#2
NO
输入#3
2 10 0 4 2 4 2
输出#3
0