博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
树状数组模板
阅读量:5165 次
发布时间:2019-06-13

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

 HDU 1166(敌兵布阵)(树状数组 单点更新区间求和)

#include
#include
#include
using namespace std;#define lowbit(x) x & (-x)//lowbit函数#define LL long long LL a[100005],n;void updata(LL x,LL v) {
//更新函数 while(x<=n) { a[x]+=v; x+=lowbit(x); }}LL query(LL x) {
//查询函数 LL sum=0; while(x) { sum+=a[x]; x-=lowbit(x); } return sum;}int main() { LL t; cin>>t; LL d=1; while(t--) { cout<<"Case "<
<<":"<
>n; LL s; memset(a,0,sizeof(a)); for(LL i=1; i<=n; i++) { cin>>s; updata(i,s); } string ss; int l,r; while(cin>>ss) { if(ss=="End"){ break; } cin>>l>>r; if(ss[0]=='A') { updata(l,r); } else if(ss[0]=='S') { updata(l,-r); } else { cout<
<
View Code

 

转载于:https://www.cnblogs.com/hwy499/p/9863505.html

你可能感兴趣的文章
vue实战(7):完整开发登录页面(一)
查看>>
Visual Studio自定义模板(二)
查看>>
【Mood-20】滴滤咖啡做法 IT工程师加班必备 更健康的coffee 项目经理加班密鉴
查看>>
读《构建之法-软件工程》第四章有感
查看>>
使用 Printf via SWO/SWV 输出调试信息
查看>>
.net 分布式架构之分布式锁实现(转)
查看>>
吴恩达机器学习笔记 —— 3 线性回归回顾
查看>>
Problem E: Automatic Editing
查看>>
SpringBoot 使用 MyBatis 分页插件 PageHelper 进行分页查询
查看>>
《DSP using MATLAB》Problem 6.17
查看>>
微信公众平台开发实战Java版之如何网页授权获取用户基本信息
查看>>
一周TDD小结
查看>>
sizeof与strlen的用法
查看>>
Linux 下常见目录及其功能
查看>>
开源框架中常用的php函数
查看>>
nginx 的提升多个小文件访问的性能模块
查看>>
set&map
查看>>
集合类总结
查看>>
4.AE中的缩放,书签
查看>>
CVE-2014-6321 && MS14-066 Microsoft Schannel Remote Code Execution Vulnerability Analysis
查看>>