码迷,mamicode.com
首页 > 编程语言 > 详细

poj2299--归并排序求解逆序对

时间:2018-03-11 00:35:27      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:str   pac   type   []   temp   int   i++   for   poj   

1、题目链接

http://acm.hrbust.edu.cn/vj/index.php?c=problem-problem&id=166400

2、代码:

//归并排序求解逆序对 
#include<iostream>
#include<stdio.h> 
#include<math.h>
#include<algorithm>
#include<stack>
#include<queue>
#include<string.h>
typedef long long int ll; 
using namespace std;

ll  n,sum;
ll  a[500005],temp[500005];

void Merge(ll a[],ll l,ll mid,ll r){
   ll i=l,j=mid+1,k=0;
   while(i<=mid&&j<=r){
      if(a[i]<a[j]){
        temp[k++]=a[i++];
      }
      else{
        temp[k++]=a[j++];
        sum+=mid-i+1;//求逆序对
      }
   }
   while(i<=mid)  temp[k++]=a[i++];
   while(j<=r)    temp[k++]=a[j++];

   for(ll i=l,k=0;i<=r;k++,i++)
    a[i]=temp[k];

}

void MergeSort(ll a[],ll l,ll r){
   ll mid;
   if(l<r){
       mid=(l+r)/2;
       MergeSort(a,l,mid);
       MergeSort(a,mid+1,r);
       Merge(a,l,mid,r);
   }
}
int main()
{
    while(~scanf("%lld",&n))
    {
        sum = 0;
        if(n == 0)
            break;
        for(int i = 0; i < n; i++)
            scanf("%lld",&a[i]);
        MergeSort(a,0,n-1);
        printf("%lld\n",sum);
    }
    
    
    
    return 0;
}

 

poj2299--归并排序求解逆序对

标签:str   pac   type   []   temp   int   i++   for   poj   

原文地址:https://www.cnblogs.com/hhkobeww/p/8541921.html

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