CF187A.Permutations

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Happy PMP is freshman and he is learning about algorithmic problems. He enjoys playing algorithmic games a lot.

One of the seniors gave Happy PMP a nice game. He is given two permutations of numbers 11 through nn and is asked to convert the first one to the second. In one move he can remove the last number from the permutation of numbers and inserts it back in an arbitrary position. He can either insert last number between any two consecutive numbers, or he can place it at the beginning of the permutation.

Happy PMP has an algorithm that solves the problem. But it is not fast enough. He wants to know the minimum number of moves to convert the first permutation to the second.

输入格式

The first line contains a single integer nn ( 1<=n<=21051<=n<=2·10^{5} ) — the quantity of the numbers in the both given permutations.

Next line contains nn space-separated integers — the first permutation. Each number between 11 to nn will appear in the permutation exactly once.

Next line describe the second permutation in the same format.

输出格式

Print a single integer denoting the minimum number of moves required to convert the first permutation to the second.

输入输出样例

  • 输入#1

    3
    3 2 1
    1 2 3
    

    输出#1

    2
    
  • 输入#2

    5
    1 2 3 4 5
    1 5 2 3 4
    

    输出#2

    1
    
  • 输入#3

    5
    1 5 2 3 4
    1 2 3 4 5
    

    输出#3

    3
    

说明/提示

In the first sample, he removes number 1 from end of the list and places it at the beginning. After that he takes number 2 and places it between 1 and 3.

In the second sample, he removes number 5 and inserts it after 1.

In the third sample, the sequence of changes are like this:

  • 1 5 2 3 4
  • 1 4 5 2 3
  • 1 3 4 5 2
  • 1 2 3 4 5

So he needs three moves.

首页