标签:bre iss sed nts space mis tab data image
Time Limit: 7000MS | Memory Limit: 65536K | |
Total Submissions: 39767 | Accepted: 14336 |
Description
Input
Output
Sample Input
5 9 1 0 5 4 3 1 2 3 0
Sample Output
6 0
归并排序:
#include<iostream> #include<cstring> using namespace std; #define M 500005 int a[M],b[M]; __int64 ans; void mergr_sort(int x,int y) { if(y-x>1) { int m=x+(y-x)/2; //划分 int p=x,q=m,i=x; mergr_sort(x,m); //递归求解 mergr_sort(m,y); //递归求解 while(p<m || q<y) { if(q>=y || (p<m && a[p]<=a[q])) b[i++]=a[p++]; //把左半数组拷贝到暂时空间 else { b[i++]=a[q++]; //把右半数组拷贝到暂时空间 ans+=m-p; } } for(i=x;i<y;i++) a[i]=b[i]; } } int main() { int n; while(cin>>n) { if(n==0) break; memset(a,0,sizeof(a)); memset(b,0,sizeof(b)); int i; for(i=1;i<=n;i++) cin>>a[i]; ans=0; mergr_sort(1,n+1); printf("%I64d\n",ans); } return 0; }
标签:bre iss sed nts space mis tab data image
原文地址:http://www.cnblogs.com/gccbuaa/p/6883172.html