시간 제한메모리 제한제출정답맞힌 사람정답 비율
2 초 512 MB28131244.444%

문제

One day (call it day 0), you find a permutation $P$ of $N$ integers written on the blackboard in a single row. Fortunately you have another permutation $Q$ of $N$ integers, so you decide to play with these permutations.

Every morning of the day 1, 2, 3 you rewrite every number on the blackboard in such a way that erases the number $x$ and write the number $Q_x$ at the same position. Please find the minimum non-negative integer $d$ such that in the evening of the day $d$ the sequence on the blackboard is sorted in increasing order.

입력

The input consists of a single test case in the format below.

The first line of the input contains an integer $N$ ($1 \le N \le 200$). The second line contains $N$ integers $P_1$, $\ldots$, $P_N$ ($1 \le P_i \le N$) which represent the permutation $P$. The third line contains $N$ integers $Q_1$,$\ldots$,$Q_N$ ($1 \le Q_i \le N$ which represent the permutation $Q$.

출력

Print the minimum non-negative integer $d$ such that in the evening of the day $d$ the sequence on the blackboard is sorted in increasing order. If such $d$ does not exist, print $-1$ instead. It is guaranteed that the answer does not exceed $10^{18}$.

예제 입력 1

6
2 3 1 4 5 6
3 1 2 5 4 6

예제 출력 1

4

예제 입력 2

6
1 2 3 4 5 6
3 1 2 5 4 6

예제 출력 2

0

예제 입력 3

6
2 3 1 4 5 6
3 4 5 6 1 2

예제 출력 3

-1