#CODEFESTIVAL2017QUALBB. Problem Set

Problem Set

Score : 200200 points

Problem Statement

Rng is preparing a problem set for a qualification round of CODEFESTIVAL.

He has NN candidates of problems. The difficulty of the ii-th candidate is DiD_i.

There must be MM problems in the problem set, and the difficulty of the ii-th problem must be TiT_i. Here, one candidate of a problem cannot be used as multiple problems.

Determine whether Rng can complete the problem set without creating new candidates of problems.

Constraints

  • 1N200,0001 \leq N \leq 200,000
  • 1Di1091 \leq D_i \leq 10^9
  • 1M200,0001 \leq M \leq 200,000
  • 1Ti1091 \leq T_i \leq 10^9
  • All numbers in the input are integers.

Partial Score

  • 100100 points will be awarded for passing the test set satisfying N100N \leq 100 and M100M \leq 100.

Input

Input is given from Standard Input in the following format:

NN

D1D_1 D2D_2 ...... DND_N

MM

T1T_1 T2T_2 ...... TMT_M

Output

Print YES if Rng can complete the problem set without creating new candidates of problems; print NO if he cannot.

5
3 1 4 1 5
3
5 4 3
YES
7
100 200 500 700 1200 1600 2000
6
100 200 500 700 1600 1600
NO

Not enough 16001600s.

1
800
5
100 100 100 100 100
NO
15
1 2 2 3 3 3 4 4 4 4 5 5 5 5 5
9
5 4 3 2 1 2 3 4 5
YES