2289Problem E: Frosh Week

2289   Problem E: Frosh Week

题目描述


During Frosh Week, students play various fun games to get to know each other and compete against other teams. In one such game, all the frosh on a team stand in a line, and are then asked to arrange themselves according to some criterion, such as their height, their birth date, or their student number. This rearrangement of the line must be accomplished only by successively swapping pairs of consecutive students. The team that finishes fastest wins. Thus, in order to win, you would like to minimize the number of swaps required.

输入格式:

The first line of input contains one positive integer n, the number of students on the team, which will be no more than one million. The following n lines each contain one integer, the student number of each student on the team. No student number will appear more than once.

输出格式:

Output a line containing the minimum number of swaps required to arrange the students in increasing order by student number.
输入样例 复制
3
3
1
2
输出样例 复制
2

说明

4
19
通过提交
时空限制10000ms/128mb
题目来源Waterloo October 2, 2010
评测方式在线评测
题目类型
难        度