首页 > 代码库 > HDU 3743 Frosh Week (归并排序)
HDU 3743 Frosh Week (归并排序)
Frosh Week
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 1919 Accepted Submission(s): 619
Problem Description
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.
Input
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
Output a line containing the minimum number of swaps required to arrange the students in increasing order by student number.
Sample Input
3 3 1 2
Sample Output
2
#include<iostream> using namespace std; #define M 1000010 int a[M]; int aux[M]; long long int ans; void merge(int a[],int l,int mid,int h) { int i=l; int j=mid+1; for(int k=l;k<=h;++k) aux[k]=a[k]; for(int k=l;k<=h;++k) { if(i>mid)a[k]=aux[j++]; else if(j>h)a[k]=aux[i++]; else if(aux[i]>aux[j]) { a[k]=aux[j++]; ans+=mid-i+1; } else a[k]=aux[i++]; } } void sort(int a[],int l,int h) { if(l>=h)return ; int mid=l+(h-l)/2; sort(a,l,mid); sort(a,mid+1,h); merge(a,l,mid,h); } int main(int argc, char *argv[]) { // freopen("3743.in","r",stdin); int n; while(scanf("%d",&n)!=EOF) { memset(a,0,sizeof(a)); memset(aux,0,sizeof(aux)); int i=0; while(n--) { scanf("%d",&a[i++]); } ans=0; sort(a,0,i-1); printf("%lld\n",ans); } return 0; }
HDU 3743 Frosh Week (归并排序)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。