Minimum Inversion Number_线段树||树状数组
For a given sequence of numbers a1, a2, ..., an, if we move the first m >= 0 numbers to the end of the seqence, we will obtain another sequence. There are totally n such sequences as the following:
a1, a2, ..., an-1, an (where m = 0 - the initial seqence)
a2, a3, ..., an, a1 (where m = 1)
a3, a4, ..., an, a1, a2 (where m = 2)
...
an, a1, a2, ..., an-1 (where m = n-1)
You are asked to write a program to find the minimum inversion number out of the above sequences.
1 3 6 9 0 8 5 7 4 2
【题意】给出n个数,求其在第一个数到最后一个的过程中,最小的逆序数是多少
【思路】建立一颗空树,在插入每个数的时候,统计这个数前面有多少数大于他,当a[i]由第一个变为最后一个时,要加上a[i]后面大于a[i]的数的个数,有n-1-a[i]个,要减去a[i]后面小于a[i]的数的个数,有a[i]个(注意i是从0开始的)
#include<iostream>
#include<string.h>
#include<stdio.h>
using namespace std;
const int N=;
struct node
{
int l,r;
int num; }tree[N*];
void build(int k,int l,int r)//建空树
{
int mid=(l+r)/;
tree[k].l=l;
tree[k].r=r;
tree[k].num=;
if(l==r) return ;
build(k*,l,mid);
build(k*+,mid+,r);
}
void updata(int k,int c)//插入
{
if(tree[k].l==c&&tree[k].r==c)
{
tree[k].num=;
return ;
}
int mid=(tree[k].l+tree[k].r)/;
if(c<=mid)
updata(k*,c);
else updata(k*+,c);
tree[k].num=tree[k*].num+tree[k*+].num;
}
int get_sum(int k,int c,int n)//统计
{
if(c<=tree[k].l&&tree[k].r<=n) return tree[k].num;
else
{
int mid=(tree[k].l+tree[k].r)/;
int sum1=,sum2=;
if(c<=mid)
sum1=get_sum(k*,c,n);
if(n>mid)
sum2=get_sum(k*+,c,n);
return sum1+sum2;
}
} int main()
{
int n;
while(scanf("%d",&n)>)
{
int a[N];
build(,,n-);
int ans=;
for(int i=;i<n;i++)
{
scanf("%d",&a[i]);
ans+=get_sum(,a[i]+,n-);
//每输入一个数时,检验一下先他输入的并比他大的数的个数,对于前面比他大的数来说,他是他们的逆序数
updata(,a[i]);
}
int minx=ans;
for(int i=;i<n;i++)
{
ans=ans+n-*a[i]-; //当a[i]由第一个变为最后一个时,要加上a[i]后面大于a[i]的数的个数,有n-1-a[i]个,要
if(ans<minx) //减去a[i]后面小于a[i]的数的个数,有a[i]个(注意i是从0开始的)
minx=ans;
}
printf("%d\n",minx);
}
return ;
}
#include<iostream>
#include<stdio.h>
#include<string.h>
#include<algorithm>
using namespace std;
const int N=+;
int a[N],b[N],c[N],ans[N];
int n,cnt,sum;
int lowbit(int x)
{
return x&(-x);
}
int query(int x)
{
int res=;
x++;
while(x<=n)
{
res+=c[x];
x+=lowbit(x);
}
return res;
}
void update(int x)
{
while(x)//对在他前且比他小的数,逆序数加1;
{
c[x]++;
x-=lowbit(x);
}
}
int main()
{
while(~scanf("%d",&n))
{
memset(a,,sizeof(a));
memset(c,,sizeof(c));
int sum=;
for(int i=;i<=n;i++)
{
scanf("%d",&a[i]);
update(a[i]+);
sum+=query(a[i]+);
}
int tmp=,s=sum;
for(int i=;i<=n;i++)
{
tmp=sum-a[i]+(n-a[i]-);
sum=tmp;
if(tmp<s)
s=tmp;
}
printf("%d\n",s);
}
return ;
}
Minimum Inversion Number_线段树||树状数组的更多相关文章
- HDU.1394 Minimum Inversion Number (线段树 单点更新 区间求和 逆序对)
HDU.1394 Minimum Inversion Number (线段树 单点更新 区间求和 逆序对) 题意分析 给出n个数的序列,a1,a2,a3--an,ai∈[0,n-1],求环序列中逆序对 ...
- HDU 1394 Minimum Inversion Number(线段树 或 树状数组)
题目大意:给出从 0 到 n-1 的整数序列,A0,A1,A2...An-1.可将该序列的前m( 0 <= m < n )个数移到后面去,组成其他的序列,例如当 m=2 时,得到序列 A2 ...
- hdu 1394 Minimum Inversion Number 逆序数/树状数组
Minimum Inversion Number Time Limit: 1 Sec Memory Limit: 256 MB 题目连接 http://acm.hdu.edu.cn/showprob ...
- HDU-1394 Minimum Inversion Number 线段树+逆序对
仍旧在练习线段树中..这道题一开始没有完全理解搞了一上午,感到了自己的shabi.. Minimum Inversion Number Time Limit: 2000/1000 MS (Java/O ...
- hdu1394(Minimum Inversion Number)线段树
明知道是线段树,却写不出来,搞了半天,戳,没办法,最后还是得去看题解(有待于提高啊啊),想做道题还是难啊. 还是先贴题吧 HDU-1394 Minimum Inversion Number Time ...
- HDU_1394_Minimum Inversion Number_线段树求逆序数
Minimum Inversion Number Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java ...
- [HDU] 1394 Minimum Inversion Number [线段树求逆序数]
Minimum Inversion Number Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java ...
- hdu - 1394 Minimum Inversion Number(线段树水题)
http://acm.hdu.edu.cn/showproblem.php?pid=1394 很基础的线段树. 先查询在更新,如果后面的数比前面的数小肯定会查询到前面已经更新过的值,这时候返回的sum ...
- hdu 13394 Minimum Inversion Number 线段树
题意: 首先给你一个长度为n的序列v,你需要首先找出来逆序对(i<j && v[i]>v[j]) 然后把这个序列的最后一个元素放在第一个位置上,其他元素都向后移动一位. 一 ...
随机推荐
- C语言中static变量详解
Static翻译出来是“静态”“静止”的意思,在C语言中的意思其实和它的本意差不多,表示“静态”或者“全局”的意思,用来修饰变量和函数.经static修饰过后的变量或者函数的作用域或者存储域会发生变化 ...
- Sudoku Solver [LeetCode]
Write a program to solve a Sudoku puzzle by filling the empty cells. Empty cells are indicated by th ...
- 怎么实现form表单提交后不重新刷新当前页面
怎么实现表单提交后不重新刷新当前页面 如何实现表单提交后不重新刷新当前页面 <form name='form1' id='form1' action='/xbcw/cw/xx_xx.ac ...
- Windows 8 App: Information about CloudsCool Helper application
Website:http://www.cloudscool.com: App download address:http://dwz.cn/7DOJm: App English introduct ...
- PHP+mysql常用类库
<?php /** * @title: Ekcms mysql类库 * @version: 1.0 * @author: perry <perry@1kyou.com> * @pub ...
- spring的bean管理
1.所有的类都可以交给Spring管理 2.如何把一个类交给bean管理? (1)配置applicationContext.xml (2)在xml中写入bean节点配置要交给bean管理的类 3.程序 ...
- bzoj 2561: 最小生成树
#include<cstdio> #include<iostream> #include<cstring> #define M 100009 #define inf ...
- flash as3 socket安全服务网关(socket policy file server)
关键字: SecurityErrorEvent socket as3 flash有着自己的一套安全处理模式,在socket方面,我这样的菜鸟无法理解他的好处:一句话,不怀好意的人如果想用flash写一 ...
- wp8.1 Study10:APP数据存储
一.理论 1.App的各种数据在WP哪里的? 下图很好介绍了这个问题.有InstalltionFolder, knownFolder, SD Card... 2.一个App的数据存储概览 主要分两大部 ...
- IE9的css hack
以前写过<IE8的css hack>,ie9一出css hack也该更新,以前一直没关注,今天在内部参考群mxclion分享了IE9的css hack,拿出来也分享一下: select { ...