码迷,mamicode.com
首页 > 其他好文 > 详细

Frosh Week HDU3743(逆序数)

时间:2019-02-08 21:55:55      阅读:232      评论:0      收藏:0      [点我收藏+]

标签:print   return   方法   set   names   求逆   owb   归并   span   

离散化加 求逆序数:

求逆序数的方法 一个是归并排序  一个是树状数组

#include<bits/stdc++.h>
using namespace std;
int n;
struct node
{
    int v;
    int id;
}s[1000001];
int c[1000001];
bool cmp(node a,node b)
{
    return a.v<b.v;
}
int lowbit(int i)
{
    return i&-i;
}
int update(int x,int v)
{
    while(x<=n)
    {
        c[x]+=v;
        x+=lowbit(x);
    }

}
int sum(int x)
{
    int ans=0;
    while(x>0)
    {
        ans+=c[x];
        x-=lowbit(x);
    }
    return ans;
}
int main()
{
    while(scanf("%d",&n)==1)
    {
    memset(s,0,sizeof(s));
    memset(c,0,sizeof(c));
    for(int i=1;i<=n;i++)
    {
        s[i].id=i;
        scanf("%d",&s[i].v);
    }
    sort(s+1,s+n+1,cmp);
    long long ans=0;
    for(int i=1;i<=n;i++)
    {
        update(s[i].id,1);
        ans+=i-sum( s[i].id );
    }
    printf("%lld\n",ans);
    }
    return 0;
}

 

Frosh Week HDU3743(逆序数)

标签:print   return   方法   set   names   求逆   owb   归并   span   

原文地址:https://www.cnblogs.com/bxd123/p/10356609.html

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