【BZOJ 1901】 Zju2112 Dynamic Rankings|树状数组套主席树

2024-03-02 21:48

本文主要是介绍【BZOJ 1901】 Zju2112 Dynamic Rankings|树状数组套主席树,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

很奇怪 把数组开到main里就RE。。。

用垃圾回收内存卡到 17MB

不过我好像养成写长代码的坏习惯了。。。。。

#include <cstdio> 
#include <cstring>
#include <iostream>
#include <algorithm>
using namespace std;
#define MAXN 10010struct H
{int L,R;int sum;
}seg[MAXN*100];struct QQQ 
{int opt;int x,y,z;
}q[MAXN];// hahs 离散 
int hash[MAXN*2];
int cnt;
int Get_Hash(int x)
{int L=1,R=cnt;while(L<R){int mid=(L+R)/2;if(x<=hash[mid]) R=mid;else L=mid+1;}return L;
}int lowbit(int x)
{return x&-x;
}int LL[MAXN],RR[MAXN],LN,RN;int n,m;
int init[MAXN]; 
int laji[MAXN*100],top;int Q(int l,int r,int k)
{if(l==r) return l;int SL=0;int SR=0;for(int i=1;i<=LN;i++) SL+=seg[seg[LL[i]].L].sum;for(int i=1;i<=RN;i++) SR+=seg[seg[RR[i]].L].sum;int mid=(l+r)/2;if(k<=SR-SL){for(int i=1;i<=LN;i++) LL[i]=seg[LL[i]].L;for(int i=1;i<=RN;i++) RR[i]=seg[RR[i]].L;return Q(l,mid,k);}else{for(int i=1;i<=LN;i++) LL[i]=seg[LL[i]].R;for(int i=1;i<=RN;i++) RR[i]=seg[RR[i]].R;k-=SR-SL;return Q(mid+1,r,k);}
}void IN(int &x)
{x=laji[top--];
}
void OUT(int &x)
{if(x==0) return ;seg[x]=(H){0,0,0};laji[++top]=x;x=0;
}
void Seg_Remove(int now,int l,int r,int x)
{if(l==r) {seg[now].sum--;return ;}int mid=(l+r)/2;if(x<=mid) Seg_Remove(seg[now].L,l,mid,x);else Seg_Remove(seg[now].R,mid+1,r,x);if(seg[seg[now].L].sum==0) OUT(seg[now].L);if(seg[seg[now].R].sum==0) OUT(seg[now].R);seg[now].sum=seg[seg[now].L].sum+seg[seg[now].R].sum;
}
void Seg_Add(int now,int l,int r,int x)
{if(l==r){seg[now].sum++;return ;}int mid=(l+r)/2;if(x<=mid){if(seg[now].L==0) IN(seg[now].L);Seg_Add(seg[now].L,l,mid,x);}else{if(seg[now].R==0) IN(seg[now].R);Seg_Add(seg[now].R,mid+1,r,x);}seg[now].sum=seg[seg[now].L].sum+seg[seg[now].R].sum;
}
int root[MAXN];void Remove(int x,int y)
{while(x<=n){Seg_Remove(root[x],1,cnt,y);x+=lowbit(x);}
}
void Add(int x,int y)
{while(x<=n){if(root[x]==0) IN(root[x]);Seg_Add(root[x],1,cnt,y);x+=lowbit(x);}
}
int team[MAXN*2];
int main()
{cin >>n >>m;int top=0;for(int i=1;i<=n;i++) {scanf("%d",&init[i]);team[++top]=init[i];}for(int i=1;i<=m;i++){char s[5];scanf("%s",s+1);if(s[1]=='Q'){scanf("%d %d %d",&q[i].x,&q[i].y,&q[i].z);q[i].opt=1;}else{scanf("%d %d",&q[i].x,&q[i].y);team[++top]=q[i].y;q[i].opt=2;}}sort(team+1,team+1+top);hash[1]=team[1];cnt=1;for(int i=2;i<=top;i++)if(team[i]!=team[i-1])hash[++cnt]=team[i];for(int i=1;i<=n;i++)init[i]=Get_Hash(init[i]);for(int i=1;i<=m;i++)if(q[i].opt==2)q[i].y=Get_Hash(q[i].y);for(int i=1;i<MAXN*100;i++)laji[++top]=i;for(int i=1;i<=n;i++)Add(i,init[i]);for(int i=1;i<=m;i++){if(q[i].opt==1){LN=0;RN=0;for(int j=q[i].x-1;j>0;j-=lowbit(j))LL[++LN]=root[j];for(int j=q[i].y;j>0;j-=lowbit(j))RR[++RN]=root[j];printf("%d\n",hash[Q(1,cnt,q[i].z)]);}else{Remove(q[i].x,init[q[i].x]);init[q[i].x]=q[i].y;Add(q[i].x,init[q[i].x]);}}return 0;
}


这篇关于【BZOJ 1901】 Zju2112 Dynamic Rankings|树状数组套主席树的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/767524

相关文章

hdu2241(二分+合并数组)

题意:判断是否存在a+b+c = x,a,b,c分别属于集合A,B,C 如果用暴力会超时,所以这里用到了数组合并,将b,c数组合并成d,d数组存的是b,c数组元素的和,然后对d数组进行二分就可以了 代码如下(附注释): #include<iostream>#include<algorithm>#include<cstring>#include<stack>#include<que

hdu 1166 敌兵布阵(树状数组 or 线段树)

题意是求一个线段的和,在线段上可以进行加减的修改。 树状数组的模板题。 代码: #include <stdio.h>#include <string.h>const int maxn = 50000 + 1;int c[maxn];int n;int lowbit(int x){return x & -x;}void add(int x, int num){while

C语言:柔性数组

数组定义 柔性数组 err int arr[0] = {0}; // ERROR 柔性数组 // 常见struct Test{int len;char arr[1024];} // 柔性数组struct Test{int len;char arr[0];}struct Test *t;t = malloc(sizeof(Test) + 11);strcpy(t->arr,

C 语言基础之数组

文章目录 什么是数组数组变量的声明多维数组 什么是数组 数组,顾名思义,就是一组数。 假如班上有 30 个同学,让你编程统计每个人的分数,求最高分、最低分、平均分等。如果不知道数组,你只能这样写代码: int ZhangSan_score = 95;int LiSi_score = 90;......int LiuDong_score = 100;int Zhou

计算数组的斜率,偏移,R2

模拟Excel中的R2的计算。         public bool fnCheckRear_R2(List<double[]> lRear, int iMinRear, int iMaxRear, ref double dR2)         {             bool bResult = true;             int n = 0;             dou

C# double[] 和Matlab数组MWArray[]转换

C# double[] 转换成MWArray[], 直接赋值就行             MWNumericArray[] ma = new MWNumericArray[4];             double[] dT = new double[] { 0 };             double[] dT1 = new double[] { 0,2 };

PHP7扩展开发之数组处理

前言 这次,我们将演示如何在PHP扩展中如何对数组进行处理。要实现的PHP代码如下: <?phpfunction array_concat ($arr, $prefix) {foreach($arr as $key => $val) {if (isset($prefix[$key]) && is_string($val) && is_string($prefix[$key])) {$arr[

Go 数组赋值问题

package mainimport "fmt"type Student struct {Name stringAge int}func main() {data := make(map[string]*Student)list := []Student{{Name:"a",Age:1},{Name:"b",Age:2},{Name:"c",Age:3},}// 错误 都指向了最后一个v// a

码蹄集部分题目(2024OJ赛9.4-9.8;线段树+树状数组)

1🐋🐋配对最小值(王者;树状数组) 时间限制:1秒 占用内存:64M 🐟题目思路 MT3065 配对最小值_哔哩哔哩_bilibili 🐟代码 #include<bits/stdc++.h> using namespace std;const int N=1e5+7;int a[N],b[N],c[N],n,q;struct QUERY{int l,r,id;}que

【第0006页 · 数组】寻找重复数

【前言】本文以及之后的一些题解都会陆续整理到目录中,若想了解全部题解整理,请看这里: 第0006页 · 寻找重复数         今天想讨论的一道题在 LeetCode 上评论也是颇为“不错”。有一说一,是道好题,不过我们还是得先理解了它才算真正的好题。这里我们展示一种使用二进制的做法,希望能帮到你哟! 【寻找重复数】给定一个包含 n + 1 个整数的数组 nums ,其数字都