线段树的区间改动

线段树的区间改动

时间限制:10000ms

单点时限:1000ms

内存限制:256MB

描写叙述

对于小Ho表现出的对线段树的理解。小Hi表示挺惬意的,可是惬意就够了么?于是小Hi将问题改了改。又出给了小Ho:

如果货架上从左到右摆放了N种商品。而且依次标号为1到N,当中标号为i的商品的价格为Pi。小Hi的每次操作分为两种可能。第一种是改动价格——小Hi给出一段区间[L, R]和一个新的价格NewP,全部标号在这段区间中的商品的价格都变成NewP。

另外一种操作是询问——小Hi给出一段区间[L, R]。而小Ho要做的便是计算出全部标号在这段区间中的商品的总价格。然后告诉小Hi。

那么这种一个问题,小Ho该怎样解决呢?

提示:推动科学发展的除了人的好奇心之外还有人的懒惰心!

输入

每一个測试点(输入文件)有且仅有一组測试数据。

每组測试数据的第1行为一个整数N,意义如前文所述。

每组測试数据的第2行为N个整数,分别描写叙述每种商品的重量。当中第i个整数表示标号为i的商品的重量Pi。

每组測试数据的第3行为一个整数Q,表示小Hi进行的操作数。

每组測试数据的第N+4~N+Q+3行,每行分别描写叙述一次操作,每行的开头均为一个属于0或1的数字,分别表示该行描写叙述一个询问和一次商品的价格的更改两种情况。

对于第N+i+3行。假设该行描写叙述一个询问。则接下来为两个整数Li, Ri。表示小Hi询问的一个区间[Li, Ri];假设该行描写叙述一次商品的价格的更改。则接下来为三个整数Li,Ri,NewP,表示标号在区间[Li, Ri]的商品的价格所有改动为NewP。

对于100%的数据。满足N<=10^5,Q<=10^5, 1<=Li<=Ri<=N,1<=Pi<=N, 0<Pi, NewP<=10^4。

输出

对于每组測试数据。对于每一个小Hi的询问,依照在输入中出现的顺序。各输出一行,表示查询的结果:标号在区间[Li, Ri]中的全部商品的价格之和。

例子输入
10
4733 6570 8363 7391 4511 1433 2281 187 5166 378
6
1 5 10 1577
1 1 7 3649
0 8 10
0 1 4
1 6 8 157
1 3 4 1557
例子输出
4731
14596

线段树水题。

#include <stdio.h>
#include <string.h>

#define maxn 100002
#define lson l, mid, rt << 1
#define rson mid + 1, r, rt << 1 | 1

struct Node {
    int sum, lazy;
} T[maxn << 2];

void pushUp(int rt) {
    T[rt].sum = T[rt<<1].sum + T[rt<<1|1].sum;
}

void pushDown(int l, int r, int rt) {
    int mid = (l + r) >> 1;
    T[rt<<1].sum = T[rt].lazy * (mid - l + 1);
    T[rt<<1|1].sum = T[rt].lazy * (r - mid);
    T[rt<<1].lazy = T[rt].lazy;
    T[rt<<1|1].lazy = T[rt].lazy;
    T[rt].lazy = 0;
}

void build(int l, int r, int rt) {
    if(l == r) {
        scanf("%d", &T[rt].sum);
        return;
    }
    int mid = (l + r) >> 1;
    build(lson);
    build(rson);
    pushUp(rt);
}

void update(int L, int R, int V, int l, int r, int rt) {
    if(l == L && r == R) {
        T[rt].lazy = V;
        T[rt].sum = V * (r - l + 1);
        return;
    }
    int mid = (l + r) >> 1;
    if(T[rt].lazy) pushDown(l, r, rt);
    if(R <= mid) update(L, R, V, lson);
    else if(L > mid) update(L, R, V, rson);
    else {
        update(L, mid, V, lson);
        update(mid + 1, R, V, rson);
    }
    pushUp(rt);
}

int query(int L, int R, int l, int r, int rt) {
    if(l == L && R == r)
        return T[rt].sum;
    int mid = (l + r) >> 1;
    if(T[rt].lazy) pushDown(l, r, rt);
    if(R <= mid) return query(L, R, lson);
    else if(L > mid) return query(L, R, rson);
    return query(L, mid, lson) + query(mid + 1, R, rson);
}

int main() {
    int N, Q, i, a, b, c, d;
    scanf("%d", &N);
    build(1, N, 1);
    scanf("%d", &Q);
    while(Q--) {
        scanf("%d%d%d", &a, &b, &c);
        if(a) {
            scanf("%d", &d);
            update(b, c, d, 1, N, 1);
        } else printf("%d\n", query(b, c, 1, N, 1));
    }
    return 0;
}
时间: 2025-01-07 16:00:03

线段树的区间改动的相关文章

HDU 1556 Color the ball(线段树:区间更新)

http://acm.hdu.edu.cn/showproblem.php?pid=1556 题意: N个气球,每次[a,b]之间的气球涂一次色,统计每个气球涂色的次数. 思路: 这道题目用树状数组和线段树都可以,拿这道题来入门一下线段树的区间更新. 1 #include<iostream> 2 #include<cstring> 3 #include<algorithm> 4 using namespace std; 5 6 const int maxn = 1000

hihoCode 1078 : 线段树的区间修改

#1078 : 线段树的区间修改 时间限制:10000ms 单点时限:1000ms 内存限制:256MB 描述 对于小Ho表现出的对线段树的理解,小Hi表示挺满意的,但是满意就够了么?于是小Hi将问题改了改,又出给了小Ho: 假设货架上从左到右摆放了N种商品,并且依次标号为1到N,其中标号为i的商品的价格为Pi.小Hi的每次操作分为两种可能,第一种是修改价格——小Hi给出一段区间[L, R]和一个新的价格NewP,所有标号在这段区间中的商品的价格都变成NewP.第二种操作是询问——小Hi给出一段

Balanced Lineup(线段树之区间查找最大最小值)

传送门 线段树的区间查找最大最小值模板. 裸的线段树 #include <iostream> #include <cstring> #include <cstdio> #include <cmath> #include <set> #include <queue> #include <vector> #include <cstdlib> #include <algorithm> #define ls

HDU 1540 &amp;&amp; POJ 2892 Tunnel Warfare (线段树,区间合并).

~~~~ 第一次遇到线段树合并的题,又被律爷教做人.TAT. ~~~~ 线段树的题意都很好理解吧.. 题目链接: http://acm.hdu.edu.cn/showproblem.php?pid=1540 http://poj.org/problem?id=2892 ~~~~ 我的代码:200ms #include<cstdio> #include<cstring> #include<iostream> #include<algorithm> #defin

HDU 4902 线段树(区间更新)

Nice boat Time Limit: 30000/15000 MS (Java/Others)    Memory Limit: 131072/131072 K (Java/Others)Total Submission(s): 353    Accepted Submission(s): 169 Problem Description There is an old country and the king fell in love with a devil. The devil alw

CodeForces 52C Circular RMQ(区间循环线段树,区间更新,区间求和)

转载请注明出处:http://blog.csdn.net/u012860063 题目链接:http://codeforces.com/problemset/problem/52/C You are given circular array a0,?a1,?...,?an?-?1. There are two types of operations with it: inc(lf,?rg,?v) - this operation increases each element on the segm

HDU 4027 Can you answer these queries?(线段树,区间更新,区间查询)

题目 线段树 简单题意: 区间(单点?)更新,区间求和 更新是区间内的数开根号并向下取整 这道题不用延迟操作 //注意: //1:查询时的区间端点可能前面的比后面的大: //2:优化:因为每次更新都是开平方,同一个数更新有限次数就一直是1了,所以可以这样优化 #include <stdio.h> #include<math.h> #define N 100010 #define LL __int64 #define lson l,m,rt<<1 #define rson

hiho一下20周 线段树的区间修改

线段树的区间修改 时间限制:10000ms 单点时限:1000ms 内存限制:256MB 描述 对于小Ho表现出的对线段树的理解,小Hi表示挺满意的,但是满意就够了么?于是小Hi将问题改了改,又出给了小Ho: 假设货架上从左到右摆放了N种商品,并且依次标号为1到N,其中标号为i的商品的价格为Pi.小Hi的每次操作分为两种可能,第一种是修改价格--小Hi给出一段区间[L, R]和一个新的价格NewP,所有标号在这段区间中的商品的价格都变成NewP.第二种操作是询问--小Hi给出一段区间[L, R]

2016年湖南省第十二届大学生计算机程序设计竞赛---Parenthesis(线段树求区间最值)

原题链接 http://acm.csu.edu.cn/OnlineJudge/problem.php?id=1809 Description Bobo has a balanced parenthesis sequence P=p1 p2…pn of length n and q questions. The i-th question is whether P remains balanced after pai and pbi  swapped. Note that questions ar