博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdu4027——Can you answer these queries?(线段树+区间更新变形)
阅读量:2343 次
发布时间:2019-05-10

本文共 3045 字,大约阅读时间需要 10 分钟。

Problem Description

A lot of battleships of evil are arranged in a line before the battle. Our commander decides to use our secret weapon to eliminate the battleships. Each of the battleships can be marked a value of endurance. For every attack of our secret weapon, it could decrease the endurance of a consecutive part of battleships by make their endurance to the square root of it original value of endurance. During the series of attack of our secret weapon, the commander wants to evaluate the effect of the weapon, so he asks you for help.
You are asked to answer the queries that the sum of the endurance of a consecutive part of the battleship line.

Notice that the square root operation should be rounded down to integer.

Input

The input contains several test cases, terminated by EOF.
For each test case, the first line contains a single integer N, denoting there are N battleships of evil in a line. (1 <= N <= 100000)
The second line contains N integers Ei, indicating the endurance value of each battleship from the beginning of the line to the end. You can assume that the sum of all endurance value is less than 263.
The next line contains an integer M, denoting the number of actions and queries. (1 <= M <= 100000)
For the following M lines, each line contains three integers T, X and Y. The T=0 denoting the action of the secret weapon, which will decrease the endurance value of the battleships between the X-th and Y-th battleship, inclusive. The T=1 denoting the query of the commander which ask for the sum of the endurance value of the battleship between X-th and Y-th, inclusive.

Output

For each test case, print the case number at the first line. Then print one line for each query. And remember follow a blank line after each test case.

Sample Input

10
1 2 3 4 5 6 7 8 9 10
5
0 1 10
1 1 10
1 1 5
0 5 8
1 4 8

Sample Output

Case #1:
19
7
6

一段数字,改变的方式是将某个区间内的数字开方,并且开方后还是整数。

不能用一般的延迟标记,因为这样的话就会之间在区间和上开方,题意是开方后求和,这样就会变成求和后开方。
但用朴素方法一定会超时,一个有效的提高效率的方法是当区间和正好等于区间长度时,说明这个区间里的数已经全部变成1,就不用再向下更新
这里有个很大的坑,就是给出的区间不一定是x

#include 
#include
#include
#include
#include
#include
#include
#include
#include
#define INF 0x3f3f3f3f#define MAXN 200005#define Mod 10001using namespace std;#define lson l , m , rt << 1#define rson m + 1 , r , rt << 1 | 1const int maxn=222222;long long sum[maxn<<2],mark[maxn<<2];void PushUp(int rt){ sum[rt]=sum[rt<<1]+sum[rt<<1|1];}void build(int l,int r,int rt){ mark[rt]=0; if(r==l) { scanf("%I64d",&sum[rt]); return; } int m=(l+r)>>1; build(lson); build(rson); PushUp(rt);}void update(int L,int R,int l,int r,int rt){ if(l==r) { sum[rt]=sqrt(sum[rt]); return; } if(L<=l&&r<=R&&sum[rt]==r-l+1) return; int m=(l+r)>>1; if(L<=m) update(L,R,lson); if(R>m) update(L,R,rson); PushUp(rt);}long long query(int L,int R,int l,int r,int rt){ if(L<=l&&r<=R) { return sum[rt]; } int m=(l+r)>>1; long long ret=0; if(L<=m) ret+=query(L,R,lson); if(R>m) ret+=query(L,R,rson); PushUp(rt); return ret;}int main(){ //for(int i=1;i<=10;++i) // cout<
<<" "<
<

转载地址:http://wvcvb.baihongyu.com/

你可能感兴趣的文章
Copy_from&to_user详解
查看>>
【C++】六、继承与多态
查看>>
特征向量的欧式距离与余弦距离——推荐算法
查看>>
Dockerfile中的CMD和ENTRYPOINT有什么区别?
查看>>
jQuery提示和技巧
查看>>
是否可以在Python中将长行分成多行[重复]
查看>>
你什么时候使用Builder模式? [关闭]
查看>>
在jQuery中每5秒调用一次函数的最简单方法是什么? [重复]
查看>>
Angular 2+中的ngShow和ngHide等效于什么?
查看>>
如何将Java String转换为byte []?
查看>>
@Transactional注释在哪里?
查看>>
找不到Gradle DSL方法:'runProguard'
查看>>
AngularJS ngClass条件
查看>>
连字符分隔的大小写是什么? [关闭]
查看>>
为什么Java中没有SortedList?
查看>>
在Go中表示枚举的惯用方法是什么?
查看>>
在React中显示或隐藏元素
查看>>
暂存已删除的文件
查看>>
为什么需要在脚本文件的开头加上#!/ bin / bash?
查看>>
ReactJS-每次调用“ setState”时都会调用渲染吗?
查看>>