B - Two Arrays Editorial /

Time Limit: 2 sec / Memory Limit: 256 MB

配点 : 300300

問題文

長さ NN の数列 a1,a2,..,aNa_1,a_2,..,a_Nb1,b2,..,bNb_1,b_2,..,b_N が与えられます。 以下の操作を 00 回以上好きなだけ繰り返して、数列 aabb を一致させられるか判定してください。

操作: 11 以上 NN 以下の整数 i,ji,j (一致していてもよい)を選び、次の2つのことを同時に行う。

  • aia_i22 を足す
  • bjb_j11 を足す

制約

  • 1N10,0001 ≤ N ≤ 10,000
  • 0ai,bi1090 ≤ a_i,b_i ≤ 10^9 (1iN1 ≤ i ≤ N)
  • 入力は全て整数

入力

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

NN
a1a_1 a2a_2 .... aNa_N
b1b_1 b2b_2 .... bNb_N

出力

操作を 00 回以上繰り返して数列 aabb を一致させられるなら Yes を、 そうでないなら No を出力せよ。


入力例 1Copy

Copy
3
1 2 3
5 2 2

出力例 1Copy

Copy
Yes

例えば、次のように 33 回操作すればよいです。

  • 11 回目: i=1,j=2i=1,j=2. これによって a={3,2,3}a = \{3,2,3\}, b={5,3,2}b = \{5,3,2\} となります。
  • 22 回目: i=1,j=2i=1,j=2. これによって a={5,2,3}a = \{5,2,3\}, b={5,4,2}b = \{5,4,2\} となります。
  • 33 回目: i=2,j=3i=2,j=3. これによって a={5,4,3}a = \{5,4,3\}, b={5,4,3}b = \{5,4,3\} となります。

入力例 2Copy

Copy
5
3 1 4 1 5
2 7 1 8 2

出力例 2Copy

Copy
No

入力例 3Copy

Copy
5
2 7 1 8 2
3 1 4 1 5

出力例 3Copy

Copy
No

Score : 300300 points

Problem Statement

You are given two integer sequences of length NN: a1,a2,..,aNa_1,a_2,..,a_N and b1,b2,..,bNb_1,b_2,..,b_N. Determine if we can repeat the following operation zero or more times so that the sequences aa and bb become equal.

Operation: Choose two integers ii and jj (possibly the same) between 11 and NN (inclusive), then perform the following two actions simultaneously:

  • Add 22 to aia_i.
  • Add 11 to bjb_j.

Constraints

  • 1N101 ≤ N ≤ 10 000000
  • 0ai,bi1090 ≤ a_i,b_i ≤ 10^9 (1iN1 ≤ i ≤ N)
  • All input values are integers.

Input

Input is given from Standard Input in the following format:

NN
a1a_1 a2a_2 .... aNa_N
b1b_1 b2b_2 .... bNb_N

Output

If we can repeat the operation zero or more times so that the sequences aa and bb become equal, print Yes; otherwise, print No.


Sample Input 1Copy

Copy
3
1 2 3
5 2 2

Sample Output 1Copy

Copy
Yes

For example, we can perform three operations as follows to do our job:

  • First operation: i=1i=1 and j=2j=2. Now we have a={3,2,3}a = \{3,2,3\}, b={5,3,2}b = \{5,3,2\}.
  • Second operation: i=1i=1 and j=2j=2. Now we have a={5,2,3}a = \{5,2,3\}, b={5,4,2}b = \{5,4,2\}.
  • Third operation: i=2i=2 and j=3j=3. Now we have a={5,4,3}a = \{5,4,3\}, b={5,4,3}b = \{5,4,3\}.

Sample Input 2Copy

Copy
5
3 1 4 1 5
2 7 1 8 2

Sample Output 2Copy

Copy
No

Sample Input 3Copy

Copy
5
2 7 1 8 2
3 1 4 1 5

Sample Output 3Copy

Copy
No


2025-04-25 (Fri)
16:53:02 +00:00