zoukankan      html  css  js  c++  java
  • POJ 2299 Ultra-QuickSort

    Ultra-QuickSort
    Time Limit: 7000MS   Memory Limit: 65536K
    Total Submissions: 39767   Accepted: 14336

    Description

    In this problem, you have to analyze a particular sorting algorithm. The algorithm processes a sequence of n distinct integers by swapping two adjacent sequence elements until the sequence is sorted in ascending order. For the input sequence
    9 1 0 5 4 ,

    Ultra-QuickSort produces the output
    0 1 4 5 9 .

    Your task is to determine how many swap operations Ultra-QuickSort needs to perform in order to sort a given input sequence.

    Input

    The input contains several test cases. Every test case begins with a line that contains a single integer n < 500,000 -- the length of the input sequence. Each of the the following n lines contains a single integer 0 ≤ a[i] ≤ 999,999,999, the i-th input sequence element. Input is terminated by a sequence of length n = 0. This sequence must not be processed.

    Output

    For every input sequence, your program prints a single line containing an integer number op, the minimum number of swap operations necessary to sort the given input sequence.

    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
    ",ans);
    	}
    
    	return 0;
    }
    
    
    
    
    
    
    
    


  • 相关阅读:
    《反恐精英》VS《使命召唤》
    CSS中expression简介实现对象批量控制
    asp无组件上传文件超过200k就提示错误的解决方法
    IE和Firefox的js兼容性整理
    国外优秀的屏幕录象专家
    陆游和唐婉
    机器智能将会在2029年达到人类的水平
    WinXP中有趣的特殊文件夹
    二行代码解决全部网页木马(含iframe/script木马)
    Javascript 获取页面高度(多种浏览器)
  • 原文地址:https://www.cnblogs.com/gccbuaa/p/6883172.html
Copyright © 2011-2022 走看看