POJ 3580 SuperMemo(splay成段更新、区间最小值、反转、插入和删除、区间搬移)

本文主要是介绍POJ 3580 SuperMemo(splay成段更新、区间最小值、反转、插入和删除、区间搬移),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

POJ 3580 SuperMemo(成段更新、区间最小值、反转、插入和删除、区间搬移)

SuperMemo
Time Limit: 5000MS
Memory Limit: 65536K
Total Submissions: 5839
Accepted: 1884
Case Time Limit: 2000MS

Description

Your friend, Jackson is invited to a TV show called SuperMemo in which the participant is told to play a memorizing game. At first, the host tells the participant a sequence of numbers, {A1A2, ... An}. Then the host performs a series of operations and queries on the sequence which consists:

  1. ADD x y D: Add D to each number in sub-sequence {Ax ... Ay}. For example, performing "ADD 2 4 1" on {1, 2, 3, 4, 5} results in {1, 3, 4, 5, 5}
  2. REVERSE x y: reverse the sub-sequence {Ax ... Ay}. For example, performing "REVERSE 2 4" on {1, 2, 3, 4, 5} results in {1, 4, 3, 2, 5}
  3. REVOLVE x y T: rotate sub-sequence {Ax ... AyT times. For example, performing "REVOLVE 2 4 2" on {1, 2, 3, 4, 5} results in {1, 3, 4, 2, 5}
  4. INSERT x P: insert P after Ax. For example, performing "INSERT 2 4" on {1, 2, 3, 4, 5} results in {1, 2, 4, 3, 4, 5}
  5. DELETE x: delete Ax. For example, performing "DELETE 2" on {1, 2, 3, 4, 5} results in {1, 3, 4, 5}
  6. MIN x y: query the participant what is the minimum number in sub-sequence {Ax ... Ay}. For example, the correct answer to "MIN 2 4" on {1, 2, 3, 4, 5} is 2

To make the show more interesting, the participant is granted a chance to turn to someone else that means when Jackson feels difficult in answering a query he may call you for help. You task is to watch the TV show and write a program giving the correct answer to each query in order to assist Jackson whenever he calls.

Input

The first line contains (≤ 100000).

The following n lines describe the sequence.

Then follows M (≤ 100000), the numbers of operations and queries.

The following M lines describe the operations and queries.

Output

For each "MIN" query, output the correct answer.

Sample Input

5
1 
2 
3 
4 
5
2
ADD 2 4 1
MIN 4 5

Sample Output

5都是伸展树比较经典的操作。
特别的是其中的循环右移操作。循环右移[l,r] T次,其实就是把区间[l,r-T]放在[r-T+1,r]后面。就是区间搬移。但是T必须先对长度取模
狂斌大神模板

/** 给定一个数列a1,a2,...an* 进行以下6种操作* ADD x y D :给第x个数到第y个数加D(增加一个add进行延迟标记)* REVERSE x y :反转[x,y]之间的数(伸展树经典操作)* REVOLVE x y T:循环右移T次(先把T对长度进行取模,然后就相当于把[y-T+1,y]放在[x,y-T]前面)* INSERT x P:在第x个数后面插入P (经典的插入)* DELETE x:删除第x个数(删除操作)* MIN x y:查询[x,y]之间最小的数(标记)** 需要的操作:反转、删除、插入、查询区间最小值、成段更新、区间搬移(循环右移转化为区间搬移)* 需要的变量:pre,ch,key,size,add,rev,m(最小值)*/#include <iostream>
#include <stdio.h>
#include <string.h>
#include <algorithm>
using namespace std;
#define Key_value ch[ch[root][1]][0]
#define Key_Value ch[ch[root][1]][0]
const int MAXN=200010;
const int INF=0x3f3f3f3f;
int pre[MAXN],ch[MAXN][2],key[MAXN],size[MAXN],add[MAXN],rev[MAXN],m[MAXN];
int root,tot1;
int s[MAXN],tot2;//内存池、内存池容量
int a[MAXN];
int n,q;void NewNode(int &r,int father,int k)
{if(tot2)r=s[tot2--];else r=++tot1;ch[r][0]=ch[r][1]=0;pre[r]=father;size[r]=1;add[r]=rev[r]=0;key[r]=m[r]=k;
}
void Update_Rev(int r)
{if(!r)return;swap(ch[r][0],ch[r][1]);rev[r]^=1;
}
void Update_Add(int r,int ADD)
{if(!r)return;add[r]+=ADD;key[r]+=ADD;m[r]+=ADD;
}
void Push_Up(int r)
{size[r]=size[ch[r][0]]+size[ch[r][1]]+1;m[r]=key[r];if(ch[r][0])m[r]=min(m[r],m[ch[r][0]]);if(ch[r][1])m[r]=min(m[r],m[ch[r][1]]);
}
void Push_Down(int r)
{if(rev[r]){Update_Rev(ch[r][0]);Update_Rev(ch[r][1]);rev[r]=0;}if(add[r]){Update_Add(ch[r][0],add[r]);Update_Add(ch[r][1],add[r]);add[r]=0;}
}
void Build(int &x,int l,int r,int father)
{if(l>r)return;int mid=(l+r)/2;NewNode(x,father,a[mid]);Build(ch[x][0],l,mid-1,x);Build(ch[x][1],mid+1,r,x);Push_Up(x);
}
void Init()
{root=tot1=tot2=0;ch[root][0]=ch[root][1]=size[root]=add[root]=rev[root]=pre[root]=0;m[root]=INF;//这个不用也可以,如果在push_up那判断了的话,否则需要NewNode(root,0,INF);NewNode(ch[root][1],root,INF);Build(Key_value,1,n,ch[root][1]);Push_Up(ch[root][1]);Push_Up(root);
}
//旋转
void Rotate(int x,int kind)
{int y=pre[x];Push_Down(y);Push_Down(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);
}
//Splay调整
void Splay(int r,int goal)
{Push_Down(r);while(pre[r]!=goal){if(pre[pre[r]]==goal){//这题有反转操作,需要先push_down,在判断左右孩子Push_Down(pre[r]);Push_Down(r);Rotate(r,ch[pre[r]][0]==r);}else{//这题有反转操作,需要先push_down,在判断左右孩子Push_Down(pre[pre[r]]);Push_Down(pre[r]);Push_Down(r);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;
}
int Get_Kth(int r,int k)
{Push_Down(r);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);
}
int Get_Min(int r)
{Push_Down(r);while(ch[r][0]){r=ch[r][0];Push_Down(r);}return r;
}
int Get_Max(int r)
{Push_Down(r);while(ch[r][1]){r=ch[r][1];Push_Down(r);}return r;
}
//下面是操作了
void ADD(int l,int r,int D)
{Splay(Get_Kth(root,l),0);Splay(Get_Kth(root,r+2),root);Update_Add(Key_value,D);Push_Up(ch[root][1]);Push_Up(root);
}
void Reverse(int l,int r)
{Splay(Get_Kth(root,l),0);Splay(Get_Kth(root,r+2),root);Update_Rev(Key_value);Push_Up(ch[root][1]);Push_Up(root);
}
void Revolve(int l,int r,int T)//循环右移
{int len=r-l+1;T=(T%len+len)%len;if(T==0)return;int c=r-T+1;//将区间[c,r]放在[l,c-1]前面Splay(Get_Kth(root,c),0);Splay(Get_Kth(root,r+2),root);int tmp=Key_value;Key_value=0;Push_Up(ch[root][1]);Push_Up(root);Splay(Get_Kth(root,l),0);Splay(Get_Kth(root,l+1),root);Key_value=tmp;pre[Key_value]=ch[root][1];//这个不用忘记Push_Up(ch[root][1]);Push_Up(root);
}
void Insert(int x,int P)//在第x个数后面插入P
{Splay(Get_Kth(root,x+1),0);Splay(Get_Kth(root,x+2),root);NewNode(Key_value,ch[root][1],P);Push_Up(ch[root][1]);Push_Up(root);
}
void erase(int r)//回收内存
{if(r){s[++tot2]=r;erase(ch[r][0]);erase(ch[r][1]);}
}
void Delete(int x)//删除第x个数
{Splay(Get_Kth(root,x),0);Splay(Get_Kth(root,x+2),root);erase(Key_value);pre[Key_value]=0;Key_value=0;Push_Up(ch[root][1]);Push_Up(root);
}
int Query_Min(int l,int r)
{Splay(Get_Kth(root,l),0);Splay(Get_Kth(root,r+2),root);return m[Key_value];
}
int main()
{//freopen("in.txt","r",stdin);//freopen("out.txt","w",stdout);char op[20];int x,y,z;while(scanf("%d",&n)==1){for(int i=1;i<=n;i++)scanf("%d",&a[i]);Init();scanf("%d",&q);while(q--){scanf("%s",op);if(strcmp(op,"ADD")==0){scanf("%d%d%d",&x,&y,&z);ADD(x,y,z);}else if(strcmp(op,"REVERSE")==0){scanf("%d%d",&x,&y);Reverse(x,y);}else if(strcmp(op,"REVOLVE")==0){scanf("%d%d%d",&x,&y,&z);Revolve(x,y,z);}else if(strcmp(op,"INSERT")==0){scanf("%d%d",&x,&y);Insert(x,y);}else if(strcmp(op,"DELETE")==0){scanf("%d",&x);Delete(x);}else{scanf("%d%d",&x,&y);printf("%d\n",Query_Min(x,y));}}}return 0;
}

这篇关于POJ 3580 SuperMemo(splay成段更新、区间最小值、反转、插入和删除、区间搬移)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



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

相关文章

Ubuntu 24.04 LTS怎么关闭 Ubuntu Pro 更新提示弹窗?

《Ubuntu24.04LTS怎么关闭UbuntuPro更新提示弹窗?》Ubuntu每次开机都会弹窗提示安全更新,设置里最多只能取消自动下载,自动更新,但无法做到直接让自动更新的弹窗不出现,... 如果你正在使用 Ubuntu 24.04 LTS,可能会注意到——在使用「软件更新器」或运行 APT 命令时,

Python按条件批量删除TXT文件行工具

《Python按条件批量删除TXT文件行工具》这篇文章主要为大家详细介绍了Python如何实现按条件批量删除TXT文件中行的工具,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录1.简介2.运行效果3.相关源码1.简介一个由python编写android的可根据TXT文件按条件批

电脑桌面文件删除了怎么找回来?别急,快速恢复攻略在此

在日常使用电脑的过程中,我们经常会遇到这样的情况:一不小心,桌面上的某个重要文件被删除了。这时,大多数人可能会感到惊慌失措,不知所措。 其实,不必过于担心,因为有很多方法可以帮助我们找回被删除的桌面文件。下面,就让我们一起来了解一下这些恢复桌面文件的方法吧。 一、使用撤销操作 如果我们刚刚删除了桌面上的文件,并且还没有进行其他操作,那么可以尝试使用撤销操作来恢复文件。在键盘上同时按下“C

poj3468(线段树成段更新模板题)

题意:包括两个操作:1、将[a.b]上的数字加上v;2、查询区间[a,b]上的和 下面的介绍是下解题思路: 首先介绍  lazy-tag思想:用一个变量记录每一个线段树节点的变化值,当这部分线段的一致性被破坏我们就将这个变化值传递给子区间,大大增加了线段树的效率。 比如现在需要对[a,b]区间值进行加c操作,那么就从根节点[1,n]开始调用update函数进行操作,如果刚好执行到一个子节点,

hdu1394(线段树点更新的应用)

题意:求一个序列经过一定的操作得到的序列的最小逆序数 这题会用到逆序数的一个性质,在0到n-1这些数字组成的乱序排列,将第一个数字A移到最后一位,得到的逆序数为res-a+(n-a-1) 知道上面的知识点后,可以用暴力来解 代码如下: #include<iostream>#include<algorithm>#include<cstring>#include<stack>#in

hdu1689(线段树成段更新)

两种操作:1、set区间[a,b]上数字为v;2、查询[ 1 , n ]上的sum 代码如下: #include<iostream>#include<algorithm>#include<cstring>#include<stack>#include<queue>#include<set>#include<map>#include<stdio.h>#include<stdl

poj 3974 and hdu 3068 最长回文串的O(n)解法(Manacher算法)

求一段字符串中的最长回文串。 因为数据量比较大,用原来的O(n^2)会爆。 小白上的O(n^2)解法代码:TLE啦~ #include<stdio.h>#include<string.h>const int Maxn = 1000000;char s[Maxn];int main(){char e[] = {"END"};while(scanf("%s", s) != EO

hdu 2602 and poj 3624(01背包)

01背包的模板题。 hdu2602代码: #include<stdio.h>#include<string.h>const int MaxN = 1001;int max(int a, int b){return a > b ? a : b;}int w[MaxN];int v[MaxN];int dp[MaxN];int main(){int T;int N, V;s

poj 1511 Invitation Cards(spfa最短路)

题意是给你点与点之间的距离,求来回到点1的最短路中的边权和。 因为边很大,不能用原来的dijkstra什么的,所以用spfa来做。并且注意要用long long int 来存储。 稍微改了一下学长的模板。 stack stl 实现代码: #include<stdio.h>#include<stack>using namespace std;const int M

poj 3259 uva 558 Wormholes(bellman最短路负权回路判断)

poj 3259: 题意:John的农场里n块地,m条路连接两块地,w个虫洞,虫洞是一条单向路,不但会把你传送到目的地,而且时间会倒退Ts。 任务是求你会不会在从某块地出发后又回来,看到了离开之前的自己。 判断树中是否存在负权回路就ok了。 bellman代码: #include<stdio.h>const int MaxN = 501;//农场数const int