#P3430. [POI 2005] DWU-Double-row
[POI 2005] DWU-Double-row
题目描述
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 soldiers in the figure. Arrows indicate the swaps that rearrange the soldiers in a proper way.
TaskWrite 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.
一句话题意By Scarlet:个数站成两排(每个数在个数中最多出现两遍),一次操作可以交换任意一列中两个数,求使每行数不重复的最少操作数。
输入格式
In the first line of the input there is one integer , . In each of the two rows there are soldiers standing. In each of the following two lines there are positive integers separated by single spaces. In the second line there are numbers , ; denotes the height of the 'th soldier in the first line. In the third line there are numbers , ; denotes the height of the 'th 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.
9
2 5 5 2 7 4 7 3 9
1 6 8 4 6 3 9 1 8
3