线段树 :区间修改,区间查询

题目描述

思路

代码

#include <cstdio>
#include <cstring>
long long n, m;
struct {
    long long at[1000005], arr[1000005 << 2], ad[1000005 << 2];
    void build(int k, int l, int r) {
        if (l == r) {
            arr[k] = at[l];
            return;
        }
        int mid = l + r >> 1;
        this->build(k << 1, l, mid);
        this->build(k << 1 | 1, mid + 1, r);
        arr[k] = arr[k << 1] + arr[k << 1 | 1];
    }
    void change(int k, int l, int r, int x, int y, int v) {
        if (x <= l && r <= y) {
            this->add(k, l, r, v);
            return;
        }
        int mid = l + r >> 1;
        this->pushdown(k, l, r, mid);
        if (x <= mid) this->change(k << 1, l, mid, x, y, v);
        if (y > mid) this->change(k << 1 | 1, mid + 1, r, x, y, v);
        arr[k] = arr[k << 1] + arr[k << 1 | 1];
    }
    long long query(int k, int l, int r, int x, int y) {
        if (x <= l && r <= y) return arr[k];
        long long res = 0;
        int mid = l + r >> 1;
        this->pushdown(k, l, r, mid);
        if (x <= mid) res += this->query(k << 1, l, mid, x, y);
        if (y > mid) res += this->query(k << 1 | 1, mid + 1, r, x, y);
        return res;
    }
    void add(int k, int l, int r, int v) {
        ad[k] += v;
        arr[k] += (long long)(r - l + 1) * v;
    }
    void pushdown(int k, int l, int r, int mid) {
        if (ad[k] == 0) return;
        add(k << 1, l, mid, ad[k]);
        add(k << 1 | 1, mid + 1, r, ad[k]);
        ad[k] = 0;
    }
} t;

inline long long read() {
    long long s = 0, f = 1;
    char ch = getchar();
    while (ch < '0' || ch > '9') {
        if (ch == '-') f = -1;
        ch = getchar();
    }
    while (ch >= '0' && ch <= '9') s = s * 10 + ch - '0', ch = getchar();
    return s * f;
}
int main() {
    n = read(), m = read();
    for (register int i = 1; i <= n; ++i) t.at[i] = read();
    t.build(1, 1, n);
    for (register int i = 1, a, b, c, d; i <= m; ++i) {
        a = read();
        if (a == 1) {
            b = read(), c = read(), d = read();
            t.change(1, 1, n, b, c, d);
        } else {
            b = read(), c = read();
            printf("%lld\n", t.query(1, 1, n, b, c));
        }
    }
    return 0;
}

原文地址:https://www.cnblogs.com/liuzz-20180701/p/11494578.html

时间: 2024-10-23 01:39:55

线段树 :区间修改,区间查询的相关文章

hdu1698 Just a Hook(线段树+区间修改+区间查询+模板)

Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 54923    Accepted Submission(s): 25566 Problem Description In the game of DotA, Pudge’s meat hook is actually the most horrible thing for most of

SPOJ GSS2 - Can you answer these queries II(线段树 区间修改+区间查询)(后缀和)

GSS2 - Can you answer these queries II #tree Being a completist and a simplist, kid Yang Zhe cannot solve but get Wrong Answer from most of the OI problems. And he refuse to write two program of same kind at all. So he always failes in contests. When

【模板】线段树 区间修改+区间查询

题目大意:维护一个长度为 N 的序列,支持区间修改.区间查询两种操作. 代码如下 #include <bits/stdc++.h> using namespace std; const int maxn=1e6+10; inline int read(){ int x=0,f=1;char ch; do{ch=getchar();if(ch=='-')f=-1;}while(!isdigit(ch)); do{x=x*10+ch-'0';ch=getchar();}while(isdigit(

hihocoder1080线段树+区间修改+区间查询+多个懒标记

题目链接:http://hihocoder.com/problemset/problem/1080 对于这种不止一个懒标记的线段树,只要弄清楚各种操作和各种懒标记间的关系就OK了. 我的代码: 1 #include <cstdio> 2 3 using namespace std; 4 5 #define MAXN 100005 6 7 int p[MAXN]; 8 9 struct segNode 10 { 11 int left, right, sum, dd, vv; 12 bool l

A Simple Problem with Integers POJ - 3468 线段树区间修改+区间查询

//add,懒标记,给以当前节点为根的子树中的每一个点加上add(不包含根节点) // #include <cstdio> #include <cstring> #include <iostream> #include <algorithm> using namespace std; typedef long long LL; const int N = 100010; int n, m; int w[N]; struct Node { int l, r;

poj 2777 Count Color(线段树区间修改)

题目链接:http://poj.org/problem?id=2777 题目意思:就是问你在询问的区间里有几种不同的颜色 思路:这题和一般的区间修改差不多,但是唯一不同的就是我们要怎么计算有种颜色,所以这时候我们就需要把延时标记赋予不同的意义,当某段区间有多种颜色时就赋值为-1,当为一种颜色时就把它赋值为这个颜色的号数.这儿我们要怎么统计询问区间不同的颜色数叻,为了不重复计算同一种颜色,那么我们就需要用一个数组来标记计算过的颜色,当我们下次遇到时就不需要再次计算了.... 代码核心处就在计数那儿

hdu-5023 A Corrupt Mayor&#39;s Performance Art (线段树区间修改)

今天集训队打比赛的一道题,很明显是个线段树,我们队照着lrj蓝书敲了一通,机智的将修改值和加和改成了位运算:|= 但是好像哪里出了点小问题,就是不对,赛后又水了一遍,竟然过了...发现还是lrj的书好啊,市面上的模板一点也不好用,连区间修改都没有 . 等集训完了要静心好好系统的学习一下线段树 . 多看多刷lrj的书 . 细节参见代码: #include<bits/stdc++.h> using namespace std; const int maxn = 1000000 + 5; int n

【线段树区间修改】fzu2105Digits Count

/* 题意: 给出数组A,有以下几个操作: 1: AND(opn, L, R):把区间[L, R]中的元素A[i]改为A[i] & opn;;;;;; 2: OR(opn, L, R) :把区间[L, R]中的元素A[i]改为A[i] | opn;;;;;;; 3: XOR(opn, L, R):把区间[L, R]中的元素A[i]改为A[i] ^ opn;;;;;;; 4: SUM(L, R) :对区间[L, R]中的元素求和:::: ------------------------------

Wikilo 1191线段树区间修改单点查询

这题也算比较容易的了. 如果哪个区间已经没有黑色的话,就不用update了,就是因为这个原因WA了2发,唉-- #include <iostream> #include <cstdio> #include <algorithm> #include <cmath> #include <deque> #include <vector> #include <queue> #include <string> #incl

线段树区间修改模板

本来打算把大白书第三章一口气攻下来的,但是这个线段树也是卡了好久. 不敢过题太快,怕自己走马观花到头来结果什么都不会. 可也不能再拖了,在做题中也许有更多的体会. 模板一:1 L R v 表示区间[L, R]所有元素都加上v2 L R   表示查询区间[L, R]的sum, min, maxsumv[o]的定义为:如果只执行节点o及其子孙节点的中的add操作,节点o对应区间中所有数之和 1 //线段树区间修改 2 //1 L R v 表示区间[L, R]所有元素都加上v 3 //2 L R 表示