시간 제한메모리 제한제출정답맞힌 사람정답 비율
1 초 512 MB75571.429%

문제

Wesley needs to take down his holiday lights. He has a line of $N$ lights, some of which may be on, and Wesley needs all the lights to be off before he can unplug them (or else he will receive a deadly electrical shock). 

Each light has a corresponding switch that can be used to turn the light on or off, and Wesley can use at most one of these switches every second, starting from the first second. However, these lights are finicky, and in the next $M$ seconds they will toggle their state on their own! Specifically, at the end of $i$-th second, the $b_i$-th light will flip its state: turn on if it was off, or turn off if it was on. Wesley wants to take the lights down as soon as possible, so he would like to know what is the earliest time possible for all the lights to be off, assuming he uses switches in an ideal manner. In particular, output the least $i$ such that all lights can be turned off by the end of the $i$-th second by some sequence of switch usages. Note that if all lights are initially off, then the least such $i$ is 0.

입력

The first line contains two integers $N$ and $M$, the number of lights and the number of unsolicited changes the lights will make ($1 \le N, M \le 2 \cdot 10^5$).

The second line will contain $N$ integers $a_1, a_2, \ldots, a_N$ ($0 \le a_i \le 1$), the initial state of the lights. Here, $a_i = 1$ indicates that the $i$-th light is initially on, and $a_i = 0$ tells it is off.

The third and final line will contain $M$ integers $b_1, b_2, \ldots b_M$, which denotes that the $b_i$-th light flips its state at the end of $i$-th second ($1 \le b_i \le N$).

출력

Output a single integer, the earliest time (in seconds) it will take for Wesley to turn all the lights off. Note that if all the lights can be turned off before $M$ seconds have passed, Wesley will ignore any future toggles and take them down immediately.

예제 입력 1

3 3
1 1 1
1 2 3

예제 출력 1

2

예제 입력 2

5 8
0 1 0 1 1
1 2 2 1 4 3 2 1

예제 출력 2

4