#D7513. Love Permutation
Love Permutation
Love Permutation
G: Koi no Junretsu Run! Run! Run! --Love Permutation, Run run run! -
story
Big Junretsu Ranran Randebu ♪ Hello, Hoshizora Ran Nya! My favorite data structure is Starry Sky Tree Nya!
Ran recently enrolled in the Department of Physics, but apparently he has to do programming there as well. Orchids, I like the theory of algorithms and data structures, but I'm not very good at implementing them ... Mostly, orchids are humans, but why do I have to study the language of machines! ??
However, if you don't do the task, you have to do it without getting credit. It seems that the issue that came out this time is related to the permutation run. If you can't see the author thinking about this problem with a single title, it's a little cold. Anyway, if you are good at programming and help me, I'll get excited! Then the problem is, let's go!
problem
If the sequence a of length K satisfies 1 \ leq a_i \ leq K (1 \ leq i \ leq K) and a_i \ neq a_j (1 \ leq i <j \ leq K), then a is a permutation of length K. It is said that.
Here, permutation pattern matching is defined as follows. A text permutation q matches a pattern permutation p means that there is a (not necessarily continuous) subsequence of q of the same length as p, such that the relative order matches p. Strictly speaking, when the length of q is N and the length of p is M, the fact that q matches p is a subscript string 1 \ leq i_1 <... <i_M \ leq N that satisfies a certain condition. Is to exist. The condition is that p_x <p_y (1 \ leq x <y \ leq M), and only then q_ {i_x} <q_ {i_y}. For example, a permutation (3, 4, 2, 1, 5) matches a permutation (2, 1, 3). This is because the subscript strings (1, 4, 5) satisfy the above conditions.
In addition, define a permutation run. A permutation run is a maximal continuous subsequence that is monotonically increasing or monotonically decreasing. That is, run is a continuous subsequence a_l, ...,, a_r (l <r), a_i <a_ {i + 1} (l \ leq i <r) (a_i> a_ {i + 1} (l) It means that there is no run consisting of continuous intervals that satisfy \ leq i <r)) and truly include this interval. For example, a permutation (3, 4, 2, 1, 5) has three runs: (3, 4), (4, 2, 1), (1, 5).
Given a text permutation q of length N and a pattern permutation p of length M. Here, q is guaranteed to always have exactly three runs. Determine if q matches p.
Input format
The input is given in the following format.
N q_1 ... q_N M p_1 ... p_M
All inputs consist of integers. The first line is given the length N of the permutation q, which is the text. The second line that follows is given N integers separated by blanks, and the i (1 \ leq i \ leq N) th integer represents the i-th element q_i of q. The third row is given the length M of the permutation p, which is the pattern. In the following 4th line, M integers are given separated by blanks, and the j (1 \ leq j \ leq M) th integer represents the jth element p_j of p.
Constraint
- 4 \ leq N \ leq 10 ^ 5
- 1 \ leq M \ leq N
- q and p are permutations of length N and M, respectively.
- q has exactly 3 runs.
Output format
Print "Yes" if permutation q matches permutation p, otherwise "No" on one line.
Input example 1
Five 3 4 2 1 5 3 one two Three
Output example 1
Yes
Input example 2
Five 3 5 4 1 2 3 one two Three
Output example 2
No
Example
Input
5 3 4 2 1 5 3 1 2 3
Output
Yes
inputFormat
Input format
The input is given in the following format.
N q_1 ... q_N M p_1 ... p_M
All inputs consist of integers. The first line is given the length N of the permutation q, which is the text. The second line that follows is given N integers separated by blanks, and the i (1 \ leq i \ leq N) th integer represents the i-th element q_i of q. The third row is given the length M of the permutation p, which is the pattern. In the following 4th line, M integers are given separated by blanks, and the j (1 \ leq j \ leq M) th integer represents the jth element p_j of p.
Constraint
- 4 \ leq N \ leq 10 ^ 5
- 1 \ leq M \ leq N
- q and p are permutations of length N and M, respectively.
- q has exactly 3 runs.
outputFormat
Output format
Print "Yes" if permutation q matches permutation p, otherwise "No" on one line.
Input example 1
Five 3 4 2 1 5 3 one two Three
Output example 1
Yes
Input example 2
Five 3 5 4 1 2 3 one two Three
Output example 2
No
Example
Input
5 3 4 2 1 5 3 1 2 3
Output
Yes
样例
5
3 4 2 1 5
3
1 2 3
Yes