码迷,mamicode.com
首页 > 其他好文 > 详细

poj2299--归并排序求逆序数

时间:2014-08-05 22:48:40      阅读:313      评论:0      收藏:0      [点我收藏+]

标签:algorithm   poj   

/** \brief poj2299
 *
 * \param date 2014/8/5
 * \param state AC
 * \return memory 4640K time 3250ms
 *
 */


#include <iostream>
#include <fstream>
#include <cstdio>
#include <cstring>


using namespace std;
const int MAXN=500000;
int Arr[MAXN];
int T[MAXN];
//__int64 t;
__int64 t;
void merge_sort(int* A,int x,int y,int* T)
{
    if(y-x>1)
    {
        int m=x+(y-x)/2;//partition
        int p=x,q=m,i=x;
        merge_sort(A,x,m,T);
        merge_sort(A,m,y,T);
        while(p<m || q<y)
        {
            if(q>=y || (p<m && A[p]<=A[q]))
                T[i++]=A[p++];//从左半数组复制到临时空间
            else
            {
                T[i++]=A[q++];//从右半数组……
                t+=m-p;//统计逆序数对
            }
        }
        for(int i=x;i<y;i++)
            A[i]=T[i];//从辅助空间复制回A数组
    }
}
int main()
{
    //cout << "Hello world!" << endl;
    //freopen("input.txt","r",stdin);
    int n=0;
    while(scanf("%d",&n))
    {
        if(n==0)break;
        memset(Arr,0,sizeof(Arr));
        memset(T,0,sizeof(T));
        for(int i=0;i<n;i++)
            cin>>Arr[i];
        merge_sort(Arr,0,n,T);
        printf("%I64d",t);
        t=0;
        cout<<endl;
    }
    return 0;
}


归并排序求序列的逆序数


poj2299--归并排序求逆序数,布布扣,bubuko.com

poj2299--归并排序求逆序数

标签:algorithm   poj   

原文地址:http://blog.csdn.net/greenapple_shan/article/details/38389673

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!