狂K 线段树
想写好树剖~~线段树very important
HDU 1166 敌兵布阵
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)
Total Submission(s): 83545 Accepted Submission(s): 35301
中央情报局要研究敌人究竟演习什么战术,所以Tidy要随时向Derek汇报某一段连续的工兵营地一共有多少人,例如Derek问:“Tidy,马上汇报第3个营地到第10个营地共有多少人!”Tidy就要马上开始计算这一段的总人数并汇报。但敌兵营地的人数经常变动,而Derek每次询问的段都不一样,所以Tidy不得不每次都一个一个营地的去数,很快就精疲力尽了,Derek对Tidy的计算速度越来越不满:"你个死肥仔,算得这么慢,我炒你鱿鱼!”Tidy想:“你自己来算算看,这可真是一项累人的工作!我恨不得你炒我鱿鱼呢!”无奈之下,Tidy只好打电话向计算机专家Windbreaker求救,Windbreaker说:“死肥仔,叫你平时做多点acm题和看多点算法书,现在尝到苦果了吧!”Tidy说:"我知错了。。。"但Windbreaker已经挂掉电话了。Tidy很苦恼,这么算他真的会崩溃的,聪明的读者,你能写个程序帮他完成这项工作吗?不过如果你的程序效率不够高的话,Tidy还是会受到Derek的责骂的.
每组数据第一行一个正整数N(N<=50000),表示敌人有N个工兵营地,接下来有N个正整数,第i个正整数ai代表第i个工兵营地里开始时有ai个人(1<=ai<=50)。
接下来每行有一条命令,命令有4种形式:
(1) Add i j,i和j为正整数,表示第i个营地增加j个人(j不超过30)
(2)Sub i j ,i和j为正整数,表示第i个营地减少j个人(j不超过30);
(3)Query i j ,i和j为正整数,i<=j,表示询问第i到第j个营地的总人数;
(4)End 表示结束,这条命令在每组数据最后出现;
每组数据最多有40000条命令
对于每个Query询问,输出一个整数并回车,表示询问的段中的总人数,这个数保持在int以内。
10
1 2 3 4 5 6 7 8 9 10
Query 1 3
Add 3 6
Query 2 7
Sub 10 2
Add 6 3
Query 3 10
End
6
33
59
#include<iostream>
#include<cstring>
#include<cstdio>
using namespace std;
#define maxn 50010
struct Tree{
int l,r,sum;
}tre[maxn * +];
int T,n;
void Built(int l,int r,int pos){
tre[pos].l=l;tre[pos].r=r;
if(l==r){ scanf("%d",&tre[pos].sum);return; }
int mid=(l+r)/;
Built(l,mid,pos*);
Built(mid+,r,pos*+);
tre[pos].sum=tre[pos<<].sum+tre[pos<<|].sum;
}
int Query(int l,int r,int pos){
int ans=;
if(l<=tre[pos].l&&tre[pos].r<=r)return tre[pos].sum;
int mid=(tre[pos].l+tre[pos].r)/;
if(mid>=l)ans+=Query(l,r,pos<<);
if(mid<r)ans+=Query(l,r,pos<<|);
tre[pos].sum=tre[pos<<].sum+tre[pos<<|].sum;
return ans;
}
void Add(int pos,int num,int now){
if(tre[now].l==tre[now].r){ tre[now].sum+=num;return ;}
int mid=(tre[now].l+tre[now].r)>>;
if(pos<=mid)Add(pos,num,now<<);
if(pos>mid)Add(pos,num,now<<|);
tre[now].sum=tre[now<<].sum+tre[now<<|].sum;
}
int main()
{
cin>>T;
int k=,x,y;
char str[];
while(T--){
memset(tre,,sizeof(tre));
scanf("%d",&n);
printf("Case %d:\n",k++);
Built(,n,);
while(){
scanf("%s",str);
if(strcmp(str,"End")==) break;
scanf("%d%d",&x,&y);
if(strcmp(str,"Query")==){
printf("%d\n",Query(x,y,));
}
if(strcmp(str,"Add")==){// zeng jia
Add(x,y,);
}
if(strcmp(str,"Sub")==){//jian shao
Add(x,-y,);
}
}
}
return ;
}
1698 Just a Hook
Time Limit: 4000/2000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 30143 Accepted Submission(s): 14884
Now Pudge wants to do some operations on the hook.
Let us number the consecutive metallic sticks of the hook from 1 to N. For each operation, Pudge can change the consecutive metallic sticks, numbered from X to Y, into cupreous sticks, silver sticks or golden sticks.
The total value of the hook is calculated as the sum of values of N metallic sticks. More precisely, the value for each kind of stick is calculated as follows:
For each cupreous stick, the value is 1.
For each silver stick, the value is 2.
For each golden stick, the value is 3.
Pudge wants to know the total value of the hook after performing the operations.
You may consider the original hook is made up of cupreous sticks.
For each case, the first line contains an integer N, 1<=N<=100,000, which is the number of the sticks of Pudge’s meat hook and the second line contains an integer Q, 0<=Q<=100,000, which is the number of the operations.
Next Q lines, each line contains three integers X, Y, 1<=X<=Y<=N, Z, 1<=Z<=3, which defines an operation: change the sticks numbered from X to Y into the metal kind Z, where Z=1 represents the cupreous kind, Z=2 represents the silver kind and Z=3 represents the golden kind.
10
2
1 5 2
5 9 3
#include<iostream>
#include<cstring>
#include<cstdio>
using namespace std;
#define N 100000
struct Node{
int l,r,data,sum;
}tre[N*];
int n,m,x1,x2,x3,t;
void Built(int now,int l,int r){
tre[now].l=l;tre[now].r=r;
if(l==r)tre[now].sum=tre[now].data=;
else{
int mid=(l+r)>>;
Built(now<<,l,mid);Built(now<<|,mid+,r);
tre[now].data=;
tre[now].sum=tre[now<<].sum+tre[now<<|].sum;
}
}
void UpData(int now,int l,int r,int val){
if(tre[now].l==l&&tre[now].r==r){
tre[now].data=val;
tre[now].sum=(r-l+)*val;
}
else{
if(tre[now].data>){
tre[now<<].data=tre[now].data;
tre[now<<].sum=(tre[now<<].r-tre[now<<].l+)*tre[now<<].data; tre[now<<|].data=tre[now].data;
tre[now<<|].sum=(tre[now<<|].r-tre[now<<|].l+)*tre[now<<|].data;
}
tre[now].data=;
int mid=(tre[now].l+tre[now].r)>>;
if(r<=mid) UpData(now<<,l,r,val);
else if(l>mid) UpData(now<<|,l,r,val);
else{
UpData(now<<,l,mid,val);
UpData(now<<|,mid+,r,val);
} tre[now].sum=tre[now<<].sum+tre[now<<|].sum;
}
}
int main(){
scanf("%d",&t);
for(int i=;i<=t;i++){
scanf("%d",&n);
Built(,,n);
scanf("%d",&m);
while(m--){
scanf("%d%d%d",&x1,&x2,&x3);
UpData(,x1,x2,x3);
}
printf("Case %d: The total value of the hook is %d.\n",i,tre[].sum);
}
return ;
}
1082 线段树练习 3
时间限制: 3 s 空间限制: 128000 KB 题目等级 : 大师 Master
给你N个数,有两种操作:
1:给区间[a,b]的所有数增加X
2:询问区间[a,b]的数的和。
第一行一个正整数n,接下来n行n个整数,
再接下来一个正整数Q,每行表示操作的个数,
如果第一个数是1,后接3个正整数,
表示在区间[a,b]内每个数增加X,如果是2,
表示操作2询问区间[a,b]的和是多少。
pascal选手请不要使用readln读入
对于每个询问输出一行一个答案
3
1
2
3
2
1 2 3 2
2 2 3
9
数据范围
1<=n<=200000
1<=q<=200000
#include<iostream>
#include<cstdio>
using namespace std;
int n,m,type;
struct node{
int l,r;long long sum,flag;
}tre[];
long long read(){
long long x=,f=;char c=getchar();
while(c<''||c>''){if(c=='-')f=-;c=getchar();}
while(c>=''&&c<=''){x=x*+c-'';c=getchar();}
return x*f;
}
void build(int now,int l,int r){
tre[now].l=l;tre[now].r=r;
if(l==r){ tre[now].sum=read();return; }
int mid=(l+r)>>;
build(now<<,l,mid);
build(now<<|,mid+,r);
tre[now].sum=tre[now<<].sum+tre[now<<|].sum;
}
void tree_flag(int now){
if(tre[now].r==tre[now].l) return;
tre[now<<].flag+=tre[now].flag;
tre[now<<|].flag+=tre[now].flag;
tre[now<<].sum+=tre[now].flag*(tre[now<<].r-tre[now<<].l+);
tre[now<<|].sum+=tre[now].flag*(tre[now<<|].r-tre[now<<|].l+);
tre[now].flag=;
}
void UpData(int now,int l,int r,int k){
if(tre[now].l==l&&tre[now].r==r){
tre[now].sum+=(r-l+)*k;
tre[now].flag+=k;
return;
}
if(tre[now].flag) tree_flag(now);
int mid=(tre[now].l+tre[now].r)>>;
if(l>mid) UpData(now<<|,l,r,k);
else if(r<=mid) UpData(now<<,l,r,k);
else{
UpData(now<<,l,mid,k);
UpData(now<<|,mid+,r,k);
}
tre[now].sum=tre[now<<].sum+tre[now<<|].sum;
}
long long int Query(int now,int l,int r){
if(tre[now].l==l&&tre[now].r==r){
return tre[now].sum;
}
if(tre[now].flag)tree_flag(now);
tre[now].sum=tre[now<<].sum+tre[now<<|].sum;
int mid=(tre[now].l+tre[now].r)>>;
if(l>mid)return Query(now<<|,l,r);
else if(r<=mid)return Query(now<<,l,r);
else{
return Query(now<<,l,mid)
+Query(now<<|,mid+,r);
}
}
int main(){
n=read();
build(,,(int)n);
m=read();
long long int l,r,x;
for(int i=;i<=m;i++){
type=read();
if(type==){
l=read(),r=read(),x=read();
UpData(,(int)l,(int)r,(int)x);
}
else{
l=read(),r=read();
printf("%lld\n",Query(,(int)l,(int)r));
}
}
return ;
}
狂K 线段树的更多相关文章
- 吉首大学2019年程序设计竞赛(重现赛)-K(线段树)
题目链接:https://ac.nowcoder.com/acm/contest/992/K 题意:给一个大小为1e5的数组,由0 1组成,有两种操作,包括区间修改,将一段区间内的0换成1,1换成0; ...
- ACM学习历程—HDU5696 区间的价值(分治 && RMQ && 线段树 && 动态规划)
http://acm.hdu.edu.cn/showproblem.php?pid=5696 这是这次百度之星初赛2B的第一题,但是由于正好打省赛,于是便错过了.加上2A的时候差了一题,当时有思路,但 ...
- 【洛谷5298】[PKUWC2018] Minimax(树形DP+线段树合并)
点此看题面 大致题意: 有一棵树,给出每个叶节点的点权(互不相同),非叶节点\(x\)至多有两个子节点,且其点权有\(p_x\)的概率是子节点点权较大值,有\(1-p_x\)的概率是子节点点权较小值. ...
- BZOJ 4034 [HAOI2015]树上操作 线段树+树剖或dfs
题意 直接照搬原题面 有一棵点数为 N 的树,以点 1 为根,且树点有边权.然后有 M 个 操作,分为三种: 操作 1 :把某个节点 x 的点权增加 a . 操作 2 :把某个节点 x 为根的子树中所 ...
- 学习笔记--函数式线段树(主席树)(动态维护第K极值(树状数组套主席树))
函数式线段树..资瓷 区间第K极值查询 似乎不过似乎划分树的效率更优于它,但是如果主席树套树状数组后,可以处理动态的第K极值.即资瓷插入删除,划分树则不同- 那么原理也比较易懂: 建造一棵线段树(权值 ...
- PAT天梯赛练习题 L3-002. 堆栈(线段树查询第K大值或主席树)
L3-002. 堆栈 时间限制 200 ms 内存限制 65536 kB 代码长度限制 8000 B 判题程序 Standard 作者 陈越 大家都知道“堆栈”是一种“先进后出”的线性结构,基本操作有 ...
- zoj 2112 Dynamic Rankings 动态第k大 线段树套Treap
Dynamic Rankings Time Limit: 20 Sec Memory Limit: 256 MB 题目连接 http://acm.zju.edu.cn/onlinejudge/show ...
- bzoj 3110: [Zjoi2013]K大数查询 树状数组套线段树
3110: [Zjoi2013]K大数查询 Time Limit: 20 Sec Memory Limit: 512 MBSubmit: 1384 Solved: 629[Submit][Stat ...
- SPOJ-COT-Count on a tree(树上路径第K小,可持久化线段树)
题意: 求树上A,B两点路径上第K小的数 分析: 同样是可持久化线段树,只是这一次我们用它来维护树上的信息. 我们之前已经知道,可持久化线段树实际上是维护的一个前缀和,而前缀和不一定要出现在一个线性表 ...
随机推荐
- 477. Total Hamming Distance
class Solution { public: int totalHammingDistance(vector<int>& nums) { ; ; i < ; i++) { ...
- JAVA运行机制
这一篇我们来简单理解一下JAVA的运行机制 大概可以分为三大部分 1.编写程序 2.编译程序 3.运行程序 1.编写程序 编写程序就是我们前面说的源代码 这些源代码都有特殊的语法 例如main函数 他 ...
- Android面试收集录13 Android虚拟机及编译过程
一.什么是Dalvik虚拟机 Dalvik是Google公司自己设计用于Android平台的Java虚拟机,它是Android平台的重要组成部分,支持dex格式(Dalvik Executable)的 ...
- jQuery的Ajax初识
1. 什么是Ajax? Ajax是“Asynchronous Javascript And XML(异步Javascript和XML)”的缩写, 是指一种创建交互式网页应用的网站开发技术. Ajax不 ...
- mutable c++
The keyword mutable is used to allow a particular data member of const object to be modified. This i ...
- centos7.3配置guacamole
目录 1 安装guacamole所需要的依赖库 2 安装配置tomcat,架设服务 2.1 下载tomcat 2.2 配置环境变量,使tomcat可以找到guacamole客户端配置 2.3 安装gu ...
- linux部署环境配置
https://blog.csdn.net/dsczxcc/article/details/78728330
- springboot整合jersey
https://blog.csdn.net/xiongpei00/article/details/76576420
- input()报错:TypeError: '>=' not supported between instances of 'str' and 'int'
今天学习python基础—分支与循环,接触到了if.在练习一个if语句的时候,出现了错误. 题目是: 根据分数划分成四个级别:优秀.良好.及格.不及格,分数是72: grade = 72if grad ...
- Windows环境下,python webdriver环境搭建
最近刚开始学习selenium,这是我从虫师的<selenium2自动测试实战--基于Python语言>这本书上学到搭建环境的步骤,里面有加上我的一些总结,希望对大家有所帮助! 准备工 ...