B - Values Editorial /

Time Limit: 2 sec / Memory Limit: 1024 MB

配点 : 400

問題文

N 頂点 M 辺の単純無向グラフが与えられます。 i 番目の辺は頂点 c_i と頂点 d_i を結んでいます。

はじめ、頂点 i には値 a_i が書かれています。あなたは次の操作を 0 回以上行うことで、操作後の各頂点の値をそれぞれ b_1,\cdots,b_N にしたいと思っています。

  • 辺を 1 つ選ぶ。選んだ辺が頂点 x と頂点 y を結んでいるとしたとき、次のいずれかを選んで行う。
    • a_x-1 し、値 a_y+1 する
    • a_x+1 し、値 a_y-1 する

適切に操作を行うことで目的を達成することが可能かどうかを判定してください。

制約

  • 1 \leq N \leq 2 \times 10^5
  • 0 \leq M \leq 2 \times 10^5
  • -10^9 \leq a_i,b_i \leq 10^9
  • 1 \leq c_i,d_i \leq N
  • 与えられるグラフは単純グラフである。すなわち、自己ループや多重辺は存在しない。
  • 入力はすべて整数である。

入力

入力は以下の形式で標準入力から与えられる。

N M
a_1 \cdots a_N
b_1 \cdots b_N
c_1 d_1
\vdots
c_M d_M

出力

適切に操作を行うことで目的を達成することが可能な場合は Yes 、可能でない場合は No と出力せよ。


入力例 1

3 2
1 2 3
2 2 2
1 2
2 3

出力例 1

Yes

例えば、以下のように操作を行うことで、目的を達成できます。

  • 1 回目の操作で頂点 12 を結ぶ辺を選び、a_1+1 し、 a_2-1 します。
  • 2 回目の操作で頂点 23 を結ぶ辺を選び、a_2+1 し、 a_3-1 します。

以上の操作により、a_1=2 かつ a_2=2 かつ a_3=2 となります。


入力例 2

1 0
5
5

出力例 2

Yes

はじめから目的が達成されていることもあります。


入力例 3

2 1
1 1
2 1
1 2

出力例 3

No

どのように操作を行っても目的を達成できません。


入力例 4

17 9
-905371741 -999219903 969314057 -989982132 -87720225 -175700172 -993990465 929461728 895449935 -999016241 782467448 -906404298 578539175 9684413 -619191091 -952046546 125053320
-440503430 -997661446 -912471383 -995879434 932992245 -928388880 -616761933 929461728 210953513 -994677396 648190629 -530944122 578539175 9684413 595786809 -952046546 125053320
2 10
6 12
9 11
11 5
7 6
3 15
3 1
1 9
10 4

出力例 4

Yes

Score : 400 points

Problem Statement

Given is a simple undirected graph with N vertices and M edges. The i-th edge connects Vertex c_i and Vertex d_i. Initially, Vertex i has the value a_i written on it. You want to change the values on Vertex 1, \ldots, Vertex N to b_1, \cdots, b_N, respectively, by doing the operation below zero or more times.

  • Choose an edge, and let Vertex x and Vertex y be the vertices connected by that edge. Choose one of the following and do it:
    • Decrease the value a_x by 1, and increase the value a_y by 1.
    • Increase the value a_x by 1, and decrease the value a_y by 1.

Determine whether it is possible to achieve the objective by properly doing the operation.

Constraints

  • 1 \leq N \leq 2 \times 10^5
  • 0 \leq M \leq 2 \times 10^5
  • -10^9 \leq a_i,b_i \leq 10^9
  • 1 \leq c_i,d_i \leq N
  • The given graph is simple, that is, has no self-loops and no multi-edges.
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

N M
a_1 \cdots a_N
b_1 \cdots b_N
c_1 d_1
\vdots
c_M d_M

Output

Print Yes if it is possible to achieve the objective by properly doing the operation, and No otherwise.


Sample Input 1

3 2
1 2 3
2 2 2
1 2
2 3

Sample Output 1

Yes

You can achieve the objective by, for example, doing the operation as follows:

  • In the first operation, choose the edge connecting Vertex 1 and 2. Then, increase a_1 by 1 and decrease a_2 by 1.
  • In the second operation, choose the edge connecting Vertex 2 and 3. Then, increase a_2 by 1 and decrease a_3 by 1.

This sequence of operations makes a_1=2, a_2=2, and a_3=2.


Sample Input 2

1 0
5
5

Sample Output 2

Yes

The objective may be achieved already in the beginning.


Sample Input 3

2 1
1 1
2 1
1 2

Sample Output 3

No

There is no way to do the operation to achieve the objective.


Sample Input 4

17 9
-905371741 -999219903 969314057 -989982132 -87720225 -175700172 -993990465 929461728 895449935 -999016241 782467448 -906404298 578539175 9684413 -619191091 -952046546 125053320
-440503430 -997661446 -912471383 -995879434 932992245 -928388880 -616761933 929461728 210953513 -994677396 648190629 -530944122 578539175 9684413 595786809 -952046546 125053320
2 10
6 12
9 11
11 5
7 6
3 15
3 1
1 9
10 4

Sample Output 4

Yes