Description
Mato同学从各路神犇以各种方式(你们懂的)收集了许多资料,这些资料一共有n份,每份有一个大小和一个编号
。为了防止他人偷拷,这些资料都是加密过的,只能用Mato自己写的程序才能访问。Mato每天随机选一个区间[l,r
],他今天就看编号在此区间内的这些资料。Mato有一个习惯,他总是从文件大小从小到大看资料。他先把要看的
文件按编号顺序依次拷贝出来,再用他写的排序程序给文件大小排序。排序程序可以在1单位时间内交换2个相邻的
文件(因为加密需要,不能随机访问)。Mato想要使文件交换次数最小,你能告诉他每天需要交换多少次吗?
Input
第一行一个正整数n,表示Mato的资料份数。
第二行由空格隔开的n个正整数,第i个表示编号为i的资料的大小。
第三行一个正整数q,表示Mato会看几天资料。
之后q行每行两个正整数l、r,表示Mato这天看[l,r]区间的文件。
n,q <= 50000
Output
q行,每行一个正整数,表示Mato这天需要交换的次数。
Sample Input
4
1 4 2 3
2
1 2
2 4
Sample Output
0
2
//样例解释:第一天,Mato不需要交换
第二天,Mato可以把2号交换2次移到最后。
只要会莫队和树状数组的板子这个题就可以轻松过了
询问莫队一下,然后发现每次莫队左右端点转移的时候和大于/小于当前数的个数有关,树状数组就可以了
懒得离散化了
1 #include<iostream> 2 #include<cstring> 3 #include<cstdio> 4 #include<cmath> 5 #include<algorithm> 6 #define N (1000000+1000) 7 using namespace std; 8 9 int c[N],a[N],n,m,unit,Ans; 10 11 struct Que{int x,y,id,num,ans;}Q[N]; 12 bool cmp1(Que a,Que b){return a.id<b.id || a.id==b.id && a.y<b.y;} 13 bool cmp2(Que a,Que b){return a.num<b.num;} 14 15 int lowbit(int x){return x & -x;} 16 void Update(int x,int v){for (;x<=1000000; c[x]+=v,x+=lowbit(x));} 17 int Query(int x){int s=0; for (;x; s+=c[x],x-=lowbit(x)); return s;} 18 19 void Del(int x,int dir) 20 { 21 if (dir==-1) Ans-=Query(a[x]-1),Update(a[x],-1); 22 else Ans-=Query(1000000)-Query(a[x]),Update(a[x],-1); 23 } 24 25 void Ins(int x,int dir) 26 { 27 if (dir==-1) 28 Ans+=Query(a[x]-1),Update(a[x],1); 29 else 30 Ans+=Query(1000000)-Query(a[x]),Update(a[x],1); 31 } 32 33 int main() 34 { 35 scanf("%d",&n); unit=sqrt(n); 36 for (int i=1; i<=n; ++i) 37 scanf("%d",&a[i]); 38 scanf("%d",&m); 39 for (int i=1; i<=m; ++i) 40 { 41 scanf("%d%d",&Q[i].x,&Q[i].y); 42 Q[i].num=i; Q[i].id=Q[i].x/unit; 43 } 44 sort(Q+1,Q+m+1,cmp1); 45 46 int l=1, r=0; 47 for (int i=1; i<=m; ++i) 48 { 49 while (l<Q[i].x) Del(l++,-1); 50 while (l>Q[i].x) Ins(--l,-1); 51 while (r<Q[i].y) Ins(++r,1); 52 while (r>Q[i].y) Del(r--,1); 53 Q[i].ans=Ans; 54 } 55 sort(Q+1,Q+m+1,cmp2); 56 for (int i=1; i<=m; ++i) 57 printf("%d\n",Q[i].ans); 58 }
原文地址:https://www.cnblogs.com/refun/p/9545895.html
时间: 2024-10-28 11:10:04