POJ 1804

简介: 题目:http://poj.org/problem?id=1804 大意:给你一串数字,排序。求出最少的交换次数  \ 我用归并做的 #include #include using namespace std; int aa[500010],bb[500010]; long lon...

题目:http://poj.org/problem?id=1804

大意:给你一串数字,排序。求出最少的交换次数  \

我用归并做的

#include<iostream>
#include<cstring>
using namespace std;
int aa[500010],bb[500010];
long long  s=0;
void merge(int l,int m,int r)
{
     int i=l,j=m+1,t=0;
     while(i<=m&&j<=r)
     {
          if(aa[i]>aa[j])
          {
               bb[t++]=aa[j++];
               s+=m-i+1;
          }
          else
          {
               bb[t++]=aa[i++];
          }
     }
     while(i<=m)
          bb[t++]=aa[i++];
     while(j<=r)
          bb[t++]=aa[j++];
     for(int i=0;i<t;i++)     //并!不能省,否则归并排序不完整
     {
          aa[l+i]=bb[i];
     }
}
void Msort (int L,int R)   
{
    int cen;
    if(L<R)
    { cen=(L+R)/2;
    Msort(L,cen);
    Msort(cen+1,R);
    merge(L,cen,R);

    }

}
void merge_sort(int *a,int n)
{ Msort(0,n-1);     //做接口;

}
int main()
{
    int n,d=1;
    cin>>n;

    for(int i=0;i<n;i++)
    {   memset(aa,0,sizeof(aa));
        memset(bb,0,sizeof(bb));

       int q;
        cin>>q;

        if(q==0)break;

    for(int j=0;j<q;j++)
    {
        cin>>aa[j];
    }
    merge_sort(aa,q);
cout<<"Scenario #"<<d<<':'<<endl;
    cout<<s<<endl<<endl;
     s=0;d++;

     }
    return 0;

}

 

相关文章
|
人工智能 算法 BI
poj 2192 Zipper
题目链接:http://poj.org/problem?id=2192 Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 18658   Accepted: 6651 Description Given ...
976 0
|
C语言
poj 2503 查字典
Description You have just moved from Waterloo to a big city. The people here speak an incomprehensible dialect of a foreign language.
866 0
|
JavaScript
poj-2551-ones
Description Given any integer 0
773 0
|
算法 机器人 编译器
POJ-2632
#include int main() { int k,a,b,n,m,i,j,num,rep,rect[100][100],robot[100][3]; int flag; char c; for(scanf("%d...
928 0