博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
POJ 2299 Ultra-QuickSort 树状数组
阅读量:4974 次
发布时间:2019-06-12

本文共 2120 字,大约阅读时间需要 7 分钟。

                                                                                         
     Ultra-QuickSort
Time Limit: 7000MS   Memory Limit: 65536K
Total Submissions: 32009   Accepted: 11395

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

59105431230

Sample Output

60 代码 :
#include
#include
#include
using namespace std ;#define M 500010int xt[M*2] , n ;int a[M] ;struct node{ int w , id ; } qe[M] ;// 用结构体储存 原始数据 id 是数据原始的位置int cmp( node a , node b ){ return a.w < b.w ;}int lowbit( int x ){ return x & ( -x ) ;}void update( int x ){ while( x <= n ){ xt[x] += 1 ; x += lowbit(x) ; }}int sum( int x ){ int s = 0 ; while( x > 0 ){ s += xt[x] ; x -= lowbit(x) ; } return s ;}int main(){ int i ; long long mun ; while( cin >> n ){ if( n == 0 ) break ; mun = 0 ; memset( xt , 0 , sizeof(xt) ) ; for( i = 1; i <= n ;i++){ scanf( "%d" , &qe[i].w ) ; qe[i].id = i ; } sort( qe + 1 , qe + 1 + n , cmp ) ; for( i = 1 ; i <= n ; i++){ a[qe[i].id] = i ; // 对数据进行离散化 例如 原来是 9 0 1 2 处理后是 4 1 2 3 } for( i = 1 ; i <= n ; i++){ update(a[i] ) ; mun += ( i - sum(a[i] - 1 ) - 1 ) ; } cout << mun << endl ; }}

  

转载于:https://www.cnblogs.com/20120125llcai/archive/2013/04/23/3038980.html

你可能感兴趣的文章
TraceView简单使用方法
查看>>
git config and options core.bare hard
查看>>
win10自动更新彻底关闭
查看>>
转:研读代码必须掌握的Eclipse快捷键
查看>>
转: 如何高效利用GitHub
查看>>
vmware打开虚拟级断电情况下,无法找到虚拟机文件
查看>>
java记录
查看>>
myeclipse 连接svn服务器验证位置时发生错误 404 forbidden
查看>>
11.19
查看>>
[JSOI2007] 文本生成器
查看>>
用表单验证数据
查看>>
论坛搭建
查看>>
php回调函数call_user_func和call_user_func_array详解
查看>>
mysql中实现分类汇总功能
查看>>
MLeaksFinder的使用
查看>>
Character Controller深度解析
查看>>
http://blog.csdn.net/lgg201/article/details/6127564
查看>>
初涉AJAX
查看>>
QuickFlow教程(13)-配置文件-global.config
查看>>
Spring MVC 基本配制
查看>>