因为shift操作中的数不多,所以直接用单点更新模拟一下就好了。

太久不写线段树,手好生啊,不是这错一下就是那错一下。

PS:输入写的我有点蛋疼,不知道谁有没有更好的写法。

 #include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
#include <vector>
using namespace std; const int maxn = + ;
const int maxnode = (maxn << );
const int INF = 0x3f3f3f3f; void scan(int& x)
{
x = ;
char c = ' ';
while(c < '' || c > '') c = getchar();
while(c >= '' && c <= '') { x = x * + c - ''; c = getchar(); }
} int qL, qR;
int p, v;
int n, Q;
int minv[maxnode]; int a[maxn]; void build(int o, int L, int R)
{
if(L == R) { scan(a[L]); minv[o] = a[L]; return ; }
int M = (L + R) / ;
build(o<<, L, M);
build(o<<|, M+, R);
minv[o] = min(minv[o<<], minv[o<<|]);
} void update(int o, int L, int R)
{
//if(v >= minv[o]) return ;
if(L == R) { minv[o] = v; return ; } int M = (L + R) / ;
if(p <= M) update(o<<, L, M);
else update(o<<|, M+, R);
minv[o] = min(minv[o<<], minv[o<<|]);
} int query(int o, int L, int R)
{
if(qL <= L && R <= qR) return minv[o];
int ans = INF;
int M = (L + R) / ;
if(qL <= M) ans = min(ans, query(o<<, L, M));
if(qR > M) ans = min(ans, query(o<<|, M+, R));
return ans;
} char op[]; int main()
{
while(scanf("%d%d", &n, &Q) == && n)
{
build(, , n);
while(Q--)
{
scanf("%s", op);
int l = strlen(op);
if(op[] == 'q')
{
int i = ;
qL = ;
while(i < l && op[i] >= '' && op[i] <= '') { qL = qL * + op[i] - ''; i++; }
while(i < l && (op[i] < '' || op[i] > '')) i++;
qR = ;
while(i < l && op[i] >= '' && op[i] <= '') { qR = qR * + op[i] - ''; i++; }
printf("%d\n", query(, , n));
}
else
{
vector<int> hehe; for(int i = ; i < l;)
{
while(i < l && (op[i] < '' || op[i] > '')) i++;
if(i >= l) break;
int x = ;
while(i < l && op[i] >= '' && op[i] <= '') { x = x * + op[i] - ''; i++; }
hehe.push_back(x);
} int sz = hehe.size();
for(int i = ; i < sz - ; i++)
{
v = a[hehe[i + ]];
p = hehe[i];
update(, , n);
}
v = a[hehe[]];
p = hehe[sz - ];
update(, , n); int t = a[hehe[]];
for(int i = ; i < sz - ; i++) a[hehe[i]] = a[hehe[i+]];
a[hehe[sz - ]] = t;
}
}
} return ;
}

代码君

UVa 12299 线段树 单点更新 RMQ with Shifts的更多相关文章

  1. HDU 1754 I Hate It 线段树单点更新求最大值

    题目链接 线段树入门题,线段树单点更新求最大值问题. #include <iostream> #include <cstdio> #include <cmath> ...

  2. HDU 1166 敌兵布阵(线段树单点更新)

    敌兵布阵 单点更新和区间更新还是有一些区别的,应该注意! [题目链接]敌兵布阵 [题目类型]线段树单点更新 &题意: 第一行一个整数T,表示有T组数据. 每组数据第一行一个正整数N(N< ...

  3. poj 2892---Tunnel Warfare(线段树单点更新、区间合并)

    题目链接 Description During the War of Resistance Against Japan, tunnel warfare was carried out extensiv ...

  4. HDU 1166 敌兵布阵(线段树单点更新,板子题)

    敌兵布阵 Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submi ...

  5. POJ 1804 Brainman(5种解法,好题,【暴力】,【归并排序】,【线段树单点更新】,【树状数组】,【平衡树】)

    Brainman Time Limit: 1000MS   Memory Limit: 30000K Total Submissions: 10575   Accepted: 5489 Descrip ...

  6. HDU 1166 敌兵布阵(线段树单点更新,区间查询)

    描述 C国的死对头A国这段时间正在进行军事演习,所以C国间谍头子Derek和他手下Tidy又开始忙乎了.A国在海岸线沿直线布置了N个工兵营地,Derek和Tidy的任务就是要监视这些工兵营地的活动情况 ...

  7. POJ.3321 Apple Tree ( DFS序 线段树 单点更新 区间求和)

    POJ.3321 Apple Tree ( DFS序 线段树 单点更新 区间求和) 题意分析 卡卡屋前有一株苹果树,每年秋天,树上长了许多苹果.卡卡很喜欢苹果.树上有N个节点,卡卡给他们编号1到N,根 ...

  8. HDUOJ----1166敌兵布阵(线段树单点更新)

    敌兵布阵 Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)Total Submis ...

  9. HDU.1166 敌兵布阵 (线段树 单点更新 区间查询)

    HDU.1166 敌兵布阵 (线段树 单点更新 区间查询) 题意分析 加深理解,重写一遍 代码总览 #include <bits/stdc++.h> #define nmax 100000 ...

随机推荐

  1. 解决mysql本地数据库不能用ip访问的问题

    [转]http://gone18611.blog.163.com/blog/static/1851943120104705244116/ MYSQL数据库缺省安装后,其默认用户名ROOT如果只能以&l ...

  2. Spring Bean的一生

    Spring Bean的一生 When you work directly in Java, you can do anything you like with your objects and do ...

  3. git-gui:使用终端打开以后出现错误提示 Spell checking is unavable

    参考链接:http://www.lai18.com/content/10706682.html 安装了git-gui,打开以后出现以下提示: Spell checking is unavable: e ...

  4. Bootstrap设置按钮禁用

    在Bootstrap中,按钮可以使用button标签或者a标签.设置按钮禁用可以通过两种方式,一种是通用CSS样式,一种是用过JS脚本动态设置,下面举例说明! <!DOCTYPE html> ...

  5. 【LeetCode】2.Add Two Numbers 链表数相加

    题目: You are given two linked lists representing two non-negative numbers. The digits are stored in r ...

  6. UVA 11214 Guarding the Chessboard 守卫棋盘(迭代加深+剪枝)

    暴力,和八皇后很像,用表示i+j和i-j标记主对角线,但是还是要加一些的剪枝的. 1.最裸的暴搜 6.420s,差点超时 2.之前位置放过的就没必要在放了,每次从上一次放的位置开始放 0.400s # ...

  7. Happy Equation

    Source: The 10th Shandong Provincial Collegiate Programming Contest 题解: 因为2^p为偶数,所以a,x的奇偶性相同 1.当a为奇数 ...

  8. 毛毛虫组【Beta】Scrum Meeting 1

    第一天 日期:2019/6/23 前言 第一次会议: 时间:6月20日 地点:教9-C404机房 内容:此次会议主要确定组内成员具体分工,并对目标进行了初步的确定. 1.1 今日完成任务情况以及遇到的 ...

  9. Render渲染函数和JSX

    1.Render函数:render是用来替换temlate的,需要更灵活的模板的写法的时候,用render. 官网API地址:https://cn.vuejs.org/v2/guide/render- ...

  10. Python Web 架构

    1. Django(全能型)2. Tornado3. BottlePython+Bottle+Sina SAE快速构建网站http://www.cnblogs.com/Xjng/p/3511983.h ...