1408. Double-row

单点时限: 2.0 sec

内存限制: 256 MB

2n soldiers are standing in a double-row. They have to be rearranged, so that there are no equally tall soldiers in each row – then we shall say, that the soldiers are set up properly.

A single operation consists in swapping two soldiers who occupy the same position (but in different rows). Your task is to determine the minimum number of swaps necessary to set the soldiers up properly.

Example:

There is a double-row of 18 soldiers in the figure. Arrows indicate the swaps that rearrange the soldiers in a proper way.

Write a programme that:

reads from the standard input the number and heights of soldiers, as they stand initially,

determines the minimum number of swaps (of soldiers standing on the same position in different rows) necessary to set up soldiers properly,

writes the result to the standard output.

输入格式

In the first line of the input there is one integer n, 1 <= n <= 50 000. In each of the two rows there are n soldiers standing. In each of the following two lines there are n positive integers separated by single spaces. In the second line there are numbers x1, x2,…, xn, 1 <= xi <= 100 000; xi denotes the height of the ith soldier in the first line. In the thrid line there are numbers y1, y2,…, yn, 1 <= y <= i100 000; yi denotes the height of the ith soldier in the second line.

It is guaranteed that in the instances from the test data it is possible to set up soldiers properly.

输出格式

In the first and only line of the standard output one integer should be written – the minimum number of swaps necessary to set up soldiers properly.

样例

Input
9
2 5 5 2 7 4 7 3 9
1 6 8 4 6 3 9 1 8
Output
3

2 人解决,3 人已尝试。

3 份提交通过,共有 23 份提交。

9.0 EMB 奖励。

创建: 16 年,8 月前.

修改: 6 年,7 月前.

最后提交: 3 年,4 月前.

来源: POI

题目标签