博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
HDU 4970(杭电多校#9 1011题)Killing Monsters(瞎搞)
阅读量:5237 次
发布时间:2019-06-14

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

题目地址:

先进行预处理。在每一个炮塔的火力范围边界标记一个点。

然后对每一个点的伤害值扫一遍就能算出来。

然后在算出每一个点到终点的总伤害值,并保存下来,也是扫一遍就可以。

最后在询问的时候直接推断就可以,复杂度O(2*n).

代码例如以下:

#include 
#include
#include
using namespace std;#define maxn 110000#define LL __int64#define lmin 1#define rmax n#define lson l,(l+r)/2,rt<<1#define rson (l+r)/2+1,r,rt<<1|1#define root lmin,rmax,1#define now l,r,rt#define int_now LL l,LL r,LL rtLL c[maxn] , sum[maxn] ;int main(){ LL n , m , l , r , x , i , temp , num ; while(scanf("%I64d", &n) && n) { num = 0 ; memset(c,0,sizeof(c)); scanf("%I64dd", &m); while(m--) { scanf("%I64d %I64d %I64d", &l, &r, &x); c[l] += x ; c[r+1] -= x ; } sum[0] = 0 ; for(i = 1 ; i <= n ; i++) { sum[i] = sum[i-1] + c[i] ; } for(i = n-1 ; i >= 1 ; i--) { sum[i] = sum[i] + sum[i+1] ; } scanf("%I64d", &m); while(m--) { scanf("%I64d %I64d", &x, &l); if( sum[l] < x ) num++ ; } printf("%I64d\n", num); } return 0;}

转载于:https://www.cnblogs.com/wzzkaifa/p/6776903.html

你可能感兴趣的文章
Hibernate-缓存
查看>>
【BZOJ4516】生成魔咒(后缀自动机)
查看>>
提高PHP性能的10条建议
查看>>
svn“Previous operation has not finished; run 'cleanup' if it was interrupted“报错的解决方法...
查看>>
熟用TableView
查看>>
Java大数——a^b + b^a
查看>>
poj 3164 最小树形图(朱刘算法)
查看>>
百度贴吧图片抓取工具
查看>>
服务器内存泄露 , 重启后恢复问题解决方案
查看>>
ajax post 传参
查看>>
2.1命令行和JSON的配置「深入浅出ASP.NET Core系列」
查看>>
android一些细节问题
查看>>
KDESVN中commit时出现containing working copy admin area is missing错误提示
查看>>
利用AOP写2PC框架(二)
查看>>
【动态规划】skiing
查看>>
java定时器的使用(Timer)
查看>>
Android实现静默安装与卸载
查看>>
ef codefirst VS里修改数据表结构后更新到数据库
查看>>
boost 同步定时器
查看>>
[ROS] Chinese MOOC || Chapter-4.4 Action
查看>>