#x1059. CF546E Soldier and Traveling

CF546E Soldier and Traveling

Soldier and Traveling

题面翻译

题意大概就是给定 nn 个城市,mm 条边。 然后人只能从走相邻边相连的城市。 现在给你初始城市的每一个人数,再给一组每个城市人数。询问是否可以从当前人数变换到给定人数。如果能,输入“YES”并输出方案,不能则输出“NO”。

感谢@Epiphyllum 提供的翻译

题目描述

In the country there are n n cities and m m bidirectional roads between them. Each city has an army. Army of the i i -th city consists of ai a_{i} 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 bi b_{i} soldiers in the i i -th city.

输入格式

First line of input consists of two integers n n and m m ( 1<=n<=100 1<=n<=100 , 0<=m<=200 0<=m<=200 ).

Next line contains n n integers a1,a2,...,an a_{1},a_{2},...,a_{n} ( 0<=ai<=100 0<=a_{i}<=100 ).

Next line contains n n integers b1,b2,...,bn b_{1},b_{2},...,b_{n} ( 0<=bi<=100 0<=b_{i}<=100 ).

Then m m lines follow, each of them consists of two integers p p and q q ( 1<=p,q<=n 1<=p,q<=n , pq p≠q ) denoting that there is an undirected road between cities p p and q q .

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 n n lines, each of them consisting of n n integers. Number in the i i -th line in the j j -th column should denote how many soldiers should road from city i i to city j j (if ij i≠j ) or how many soldiers should stay in city i i (if i=j i=j ).

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