#ABC178F. [ABC178F] Contrast

[ABC178F] Contrast

Score : 600600 points

Problem Statement

Given are two sequences AA and BB, both of length NN. AA and BB are each sorted in the ascending order. Check if it is possible to reorder the terms of BB so that for each ii (1iN1 \leq i \leq N) AiBiA_i \neq B_i holds, and if it is possible, output any of the reorderings that achieve it.

Constraints

  • 1N2×1051\leq N \leq 2 \times 10^5
  • 1Ai,BiN1\leq A_i,B_i \leq N
  • AA and BB are each sorted in the ascending order.
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

NN

A1A_1 A2A_2 \cdots ANA_N

B1B_1 B2B_2 \cdots BNB_N

Output

If there exist no reorderings that satisfy the condition, print No.

If there exists a reordering that satisfies the condition, print Yes on the first line. After that, print a reordering of BB on the second line, separating terms with a whitespace.

If there are multiple reorderings that satisfy the condition, you can print any of them.

6
1 1 1 2 2 3
1 1 1 2 2 3
Yes
2 2 3 1 1 1
3
1 1 2
1 1 3
No
4
1 1 2 3
1 2 3 3
Yes
3 3 1 2