POJ 2299 Ultra-QuickSort(树状数组)

请不要随便指点别人该怎么做、每个人的人生都应该自己掌握、你给不了别人一切、你也不懂别人的忧伤、

                                                                                          微笑不代表快乐、哭泣不一定悲伤

               不努力怎么让关心你的人幸福、不努力怎么让看不起你的人绝望、

                                                                                                                                    

                                                                                                                                                              我用生命在奋斗——lx_Zz

—————————————————————————————————————————————————————————————

—————————————————————————    华丽的分割线    ————————————————————————————

—————————————————————————————————————————————————————————————

12868967 lx_Zz 2299 Accepted 7932K 391MS G++ 1257B 2014-05-13 02:26:41

归并排序或者树状数组或者线段树都能做、以前做树状数组的题少、现在加上一题、

/* 题目: poj 2299    */
/* 作者: lx_Zz       */
/* 时间: 2014.5.13   */
#include<cstdio>
#include<queue>
#include<vector>
#include<map>
#include<string>
#include<iostream>
#include<cmath>
#include<cstdlib>
#include<cstring>
#include<algorithm>
using namespace std;
#define INF 0x7fffffff
#define LL __int64
int n;
const int maxn=500005;
struct node
{
	int val;
	int id;
}dot[maxn];

int M[maxn];
int c[maxn];

int lowbit(int x)
{
	return x&(-x);
}

void add(int x,int d)
{
	while(x<=n)
	{
		c[x]+=d;
		x+=lowbit(x);
	}
}

int sum(int x)
{
	int ret=0;
	while(x>0)
	{
		ret+=c[x];
		x-=lowbit(x);
	}
	return ret;
}

int cmp(node a,node b)
{
	return a.val<b.val;
}

int main()
{
    //freopen("C:\\Users\\终将我要华丽的逆袭\\Desktop\\lx_Zz_in.txt","r",stdin);
    //freopen("C:\\Users\\终将我要华丽的逆袭\\Desktop\\lx_Zz_out.txt","w",stdout);

	while(scanf("%d",&n)!=EOF)
	{
		if(n==0)break;
		for(int i=1;i<=n;i++)
		{
			scanf("%d",&dot[i].val);
			dot[i].id=i;
		}
		sort(dot+1,dot+1+n,cmp);
		for(int i=1;i<=n;i++)
		{
			M[dot[i].id]=i;
		}
		LL ans=0;
		memset(c,0,sizeof(c));
		for(int i=1;i<=n;i++)
		{
			add(M[i],1);
			ans+=(i-sum(M[i]));
		}
		printf("%I64d\n",ans);
	}
    return 0;
}


你可能感兴趣的:(树状数组)