【poj3468】A Simple Problem with Integers
題面
You have N integers, A1, A2, … , AN. You need to deal with two kinds of operations.
One type of operation is to add some given number to each number in a given interval.
The other is to ask for the sum of numbers in a given interval.
題解
線段樹模板
#include<iostream>
#include<algorithm>
using namespace std;
const int maxn = 100010;
typedef long long LL;
LL a[maxn];
struct node{
int l, r;
LL val, addmark;
}sgt[maxn<<2];
void build(int p, int l, int r){
sgt[p].l = l, sgt[p].r = r;
if(l == r){
sgt[p].val = a[l];
}else{
int m = (l+r)/2;
build(p*2,l,m);
build(p*2+1,m+1,r);
sgt[p].val = sgt[p*2].val+sgt[p*2+1].val;
}
}
void pushdown(int p){
if(sgt[p].addmark != 0){
LL t = sgt[p].addmark;
sgt[p].addmark = 0;
sgt[p*2].addmark += t;
sgt[p*2+1].addmark += t;
sgt[p*2].val += (sgt[p*2].r-sgt[p*2].l+1)*t;
sgt[p*2+1].val += (sgt[p*2+1].r-sgt[p*2+1].l+1)*t;
}
}
void add(int p, int l, int r, LL v){
if(l <= sgt[p].l && sgt[p].r <= r){
sgt[p].val += (sgt[p].r-sgt[p].l+1)*v;
sgt[p].addmark += v;
return ;
}
pushdown(p);
int m = (sgt[p].l+sgt[p].r)/2;
if(l <= m)add(p*2,l,r,v);
if(r > m)add(p*2+1,l,r,v);
sgt[p].val = sgt[p*2].val+sgt[p*2+1].val;
}
LL query(int p, int l, int r){
if(l <= sgt[p].l && sgt[p].r <= r)return sgt[p].val;
pushdown(p); //pushdown
LL m = (sgt[p].l+sgt[p].r)/2, ans = 0;
if(l <= m)ans += query(p*2,l,r);
if(r > m)ans += query(p*2+1,l,r);
return ans;
}
int main(){
ios::sync_with_stdio(false);
int n, m;
cin>>n>>m;
for(int i = 1; i <= n; i++)cin>>a[i];
build(1,1,n);
for(int i = 1; i <= m; i++){
char ch; cin>>ch;
if(ch == 'Q'){
LL x, y; cin>>x>>y;
cout<<query(1,x,y)<<"\n";
}else{
LL x, y, z; cin>>x>>y>>z;
add(1,x,y,z);
}
}
return 0;
}
關於線段樹2*n空間表示法。
推薦部落格http://www.cppblog.com/MatoNo1/archive/2015/05/05/195857.html
相關文章
- POJ3468 A Simple Problem with Integers---樹狀陣列(區間問題)陣列
- NC17383 A Simple Problem with Integers
- POJ 3468 A Simple Problem with Integers (線段樹 區間共加)
- bzoj3212: Pku3468 A Simple Problem with Integers(線段樹)
- A - Yet Another Two Integers Problem ACMACM
- Leetcode 29 Divide Two IntegersLeetCodeIDE
- leetcode-29. Divide Two IntegersLeetCodeIDE
- [LeetCode] 29. Divide Two IntegersLeetCodeIDE
- POJ 2891 Strange Way to Express IntegersExpress
- leetcode 371. Sum of Two IntegersLeetCode
- Sum Problem
- Mathematical Problem
- LeetCode T29 Divide Two IntegersLeetCodeIDE
- Simple Neural Network
- Paxos Made Simple
- Prime Ring Problem
- 2019 MCM Problem A
- Yet Another Problem
- Nanami and the Constructive ProblemNaNStruct
- django-simple-captchaDjangoAPT
- Shrio(Simple,Java,Security)Java
- simple Terracotta session 同步Session
- Simple state transition 3
- Project Three: Simple WorldProject
- uni-simple-router
- Fixed "There was a problem with the editor 'vi'"
- Prime Ring Problem (dfs)
- HDU - 6182 A Math Problem
- Problem A. Ascending Rating
- E. Not a Nim Problem
- Nanami and the House Protecting ProblemNaN
- Simple FSM 3(asynchronous reset)
- Simple FSM 3(synchronous reset)
- Homework record-Simple sorting
- [譯]A Simple CSS Animation TutorialCSS
- vits-simple-api搭建API
- [LeetCode] 3226. Number of Bit Changes to Make Two Integers EqualLeetCode
- P1865 A % B Problem