CF 295E Yaroslav and Points(Splay)
轉載請註明出處,謝謝http://blog.csdn.net/ACM_cxlove?viewmode=contents by---cxlove
對於比賽中的hime這種裸E爺不忍直視。
雖然是非常裸的資料結構,但是實在是程式碼捉雞。。。。
首先用一個set維護一下,當前序列中的數。
排好序後建立Splay,至於修改操作,便是找到原來位置上的,刪除之後,再找到需要插入的位置 。
感覺這個部分,我寫得很麻煩,大概就是不斷遍歷。sad。。。。
至於查詢部分,Splay肯定是找到區間,然後旋轉到某棵子樹。就行了
Splay維護一個子樹的答案,然後還需要維護子樹的序列和。
push_up的時候,根據左右子樹關係就OK了。。。。
一般這種資料結構我都會RE幾次,死迴圈。。。2333333333333
AC時刻,不能更爽。。。
#include <iostream>
#include <cstdio>
#include <cmath>
#include <algorithm>
#include <cstring>
#include <vector>
#include <set>
#define LL long long
#define db puts("BEGIN");
#define de puts("END");
#define inf 2000000000LL
#define Key_value ch[ch[root][1]][0]
using namespace std;
const int N=100015;
set<int>s;
int n,q,a[N],b[N];
struct Splay_tree{
LL sum[N],ans[N];
int size[N],pre[N],val[N],tot;
int ch[N][2],tot1,root,s[N],tot2;
//debug部分copy from hh
void Treaval(int x) {
if(x) {
Treaval(ch[x][0]);
printf("%2d ",val[x]);
Treaval(ch[x][1]);
}
}
void debug() {Treaval(root);puts("");}
//以上Debug
inline void NewNode(int &r,int k,int father){
if(tot2) r=s[--tot2];
else r=++tot1;
ch[r][0]=ch[r][1]=0;
sum[r]=k;
ans[r]=0LL;
pre[r]=father;
size[r]=1;
val[r]=k;
}
inline void Push_Up(int x){
if(x==0) return ;
int l=ch[x][0],r=ch[x][1];
size[x]=size[l]+size[r]+1;
sum[x]=sum[l]+sum[r]+val[x];
ans[x]=(LL)ans[l]+ans[r]-(LL)sum[l]*size[r]+(LL)sum[r]*size[l]+(LL)val[x]*(size[l]-size[r])-sum[l]+sum[r];
}
inline void Bulid(int &r,int L,int R,int father){
if(L>R)
return ;
int mid=(L+R)/2;
NewNode(r,a[mid],father);
Bulid(ch[r][0],L,mid-1,r);
Bulid(ch[r][1],mid+1,R,r);
Push_Up(r);
}
inline void Init(){
tot=tot1=tot2=root=0;
NewNode(root,-inf,0);
NewNode(ch[root][1],inf,root);
Bulid(Key_value,1,n,ch[root][1]);
Push_Up(ch[root][1]);
Push_Up(root);
}
inline void Rotate(int x,int kind){
int y=pre[x];
ch[y][!kind]=ch[x][kind];
pre[ch[x][kind]]=y;
if(pre[y])
ch[pre[y]][ch[pre[y]][1]==y]=x;
pre[x]=pre[y];
ch[x][kind]=y;
pre[y]=x;
Push_Up(y);
}
inline void Splay(int r,int goal){
while(pre[r]!=goal){
if(pre[pre[r]]==goal)
Rotate(r,ch[pre[r]][0]==r);
else{
int y=pre[r];
int kind=(ch[pre[y]][0]==y);
if(ch[y][kind]==r){
Rotate(r,!kind);
Rotate(r,kind);
}
else{
Rotate(y,kind);
Rotate(r,kind);
}
}
}
Push_Up(r);
if(goal==0) root=r;
}
inline void RotateTo(int k, int goal) {
int x=root;
while(k!=size[ch[x][0]]+1){
if (k<=size[ch[x][0]]){
x=ch[x][0];
}else{
k-=(size[ch[x][0]]+1);
x=ch[x][1];
}
}
Splay(x,goal);
}
inline int Get_Kth(int r,int k){
int t=size[ch[r][0]]+1;
if(t==k) return r;
if(t>k) return Get_Kth(ch[r][0],k);
else return Get_Kth(ch[r][1],k-t);
}
inline int find(int r,int num){
if(val[r]==num) return r;
else if(val[r]<num) return find(ch[r][1],num);
else return find(ch[r][0],num);
}
inline int Insert(int pos,int k){
tot++;
RotateTo(pos,0);
RotateTo(pos+1,root);
NewNode(Key_value,k,ch[root][1]);
Push_Up(ch[root][1]);
Push_Up(root);
return Key_value;
}
inline void Delete(int r){
tot--;
Splay(r,0);
int pos=size[ch[r][0]];
RotateTo(pos,0);
RotateTo(pos+2,root);
s[tot2++]=Key_value;
Key_value=0;
Push_Up(ch[root][1]);
Push_Up(root);
}
inline void add(int r,int num,int pos){
if(num<=val[r]){
if(ch[r][0]==0)
Insert(pos,num);
else
add(ch[r][0],num,pos);
}
else{
if(ch[r][1]==0)
Insert(pos+1+size[ch[r][0]],num);
else
add(ch[r][1],num,pos+size[ch[r][0]]+1);
}
}
inline void InOrder(int r){
if(r==0)
return;
InOrder(ch[r][0]);
printf("%d ",val[r]);
InOrder(ch[r][1]);
}
inline void Print(){
RotateTo(1,0);
RotateTo(tot+2,root);
InOrder(Key_value);
printf("\n");
}
}splay;
int main(){
//freopen("input.txt","r",stdin);
scanf("%d",&n);
for(int i=1;i<=n;i++){
scanf("%d",&a[i]);
b[i]=a[i];
s.insert(a[i]);
}
s.insert(inf);s.insert(-inf);
sort(a+1,a+1+n);
splay.Init();
scanf("%d",&q);
set<int>::iterator it;
while(q--){
int k,l,r;
scanf("%d%d%d",&k,&l,&r);
if(k==1){
it=s.lower_bound(b[l]);
splay.Delete(splay.find(splay.root,*it));
s.erase(it);
b[l]+=r;
s.insert(b[l]);
splay.add(splay.root,b[l],0);
}
else{
it=s.lower_bound(l);it--;
splay.Splay(splay.find(splay.root,*it),0);
it=s.upper_bound(r);
splay.Splay(splay.find(splay.root,*it),splay.root);
printf("%I64d\n",splay.ans[splay.ch[splay.ch[splay.root][1]][0]]);
}
}
return 0;
}
相關文章
- CF 220E Little Elephant and Inversions(主席樹+two points)
- 【部落格】Splay
- Grid Points
- hdu3487Play with Chain【splay】AI
- Important Points for Inheritance in JavaImportJava
- 伸展樹(Splay)學習筆記筆記
- Machine Learning - Basic pointsMac
- Objects as Points 論文總結Object
- Restore Points 制定回退方案REST
- Leetcode Max Points on a LineLeetCode
- Points on Cycle (hdu1700,幾何)
- Game with points(數學,難度中)GAM
- [演算法] 資料結構 splay(伸展樹)解析演算法資料結構
- guarantee restore points-Flashback after RMAN restoreREST
- Leetcode-Max Points on a LineLeetCode
- Max Points on a Line leetcode javaLeetCodeJava
- 普通平衡樹學習筆記之Splay演算法筆記演算法
- [學習筆記] Splay & Treap 平衡樹 - 資料結構筆記資料結構
- 迭代最近點演算法 Iterative Closest Points演算法
- CF提交
- leetcode-149-Max Points on a LineLeetCode
- LeetCode149:Max Points on a LineLeetCode
- Codeforces Round #245 (Div. 2) A - Points and Segments (easy)
- Intuitive Scrolling Interfaces with CSS Scroll Snap PointsUICSS
- CF700
- CF941
- CF 979 ReviewView
- 最近做題遇到的坑 cf865d,cf838e,cf317d,cf1394b,poj3322,cf223c,hdu2435,cf47d
- 什麼是 Angular library 的 secondary entry points?Angular
- Important points about LOGGING and NOLOGGING(轉)Import
- CF1975
- CF1969
- CF1971
- CF 977 ReviewView
- CF 構造題
- CF1951
- CF939 D
- CF33C