#x1059. CF546E Soldier and Traveling
CF546E Soldier and Traveling
Soldier and Traveling
题面翻译
题意大概就是给定 个城市, 条边。 然后人只能从走相邻边相连的城市。 现在给你初始城市的每一个人数,再给一组每个城市人数。询问是否可以从当前人数变换到给定人数。如果能,输入“YES”并输出方案,不能则输出“NO”。
感谢@Epiphyllum 提供的翻译
题目描述
In the country there are cities and bidirectional roads between them. Each city has an army. Army of the -th city consists of soldiers. Now soldiers roam. After roaming each soldier has to either stay in his city or to go to the one of neighboring cities by at moving along at most one road.
Check if is it possible that after roaming there will be exactly soldiers in the -th city.
输入格式
First line of input consists of two integers and ( , ).
Next line contains integers ( ).
Next line contains integers ( ).
Then lines follow, each of them consists of two integers and ( , ) denoting that there is an undirected road between cities and .
It is guaranteed that there is at most one road between each pair of cities.
输出格式
If the conditions can not be met output single word "NO".
Otherwise output word "YES" and then lines, each of them consisting of integers. Number in the -th line in the -th column should denote how many soldiers should road from city to city (if ) or how many soldiers should stay in city (if ).
If there are several possible answers you may output any of them.
样例 #1
样例输入 #1
4 4
1 2 6 3
3 5 3 1
1 2
2 3
3 4
4 2
样例输出 #1
YES
1 0 0 0
2 0 0 0
0 5 1 0
0 0 2 1
样例 #2
样例输入 #2
2 0
1 2
2 1
样例输出 #2
NO
相关
在下列比赛中: