1698 Just a Hook(线段树段修改)

来源:互联网 发布:java与javascript区别 编辑:程序博客网 时间:2024/06/16 08:01

Just a Hook

Problem Description
In the game of DotA, Pudge’s meat hook is actually the most horrible thing for most of the heroes. The hook is made up of several consecutive metallic sticks which are of the same length.

这里写图片描述

Now Pudge wants to do some operations on the hook.

Let us number the consecutive metallic sticks of the hook from 1 to N. For each operation, Pudge can change the consecutive metallic sticks, numbered from X to Y, into cupreous sticks, silver sticks or golden sticks.
The total value of the hook is calculated as the sum of values of N metallic sticks. More precisely, the value for each kind of stick is calculated as follows:

For each cupreous stick, the value is 1.
For each silver stick, the value is 2.
For each golden stick, the value is 3.

Pudge wants to know the total value of the hook after performing the operations.
You may consider the original hook is made up of cupreous sticks.

Input
The input consists of several test cases. The first line of the input is the number of the cases. There are no more than 10 cases.
For each case, the first line contains an integer N, 1<=N<=100,000, which is the number of the sticks of Pudge’s meat hook and the second line contains an integer Q, 0<=Q<=100,000, which is the number of the operations.
Next Q lines, each line contains three integers X, Y, 1<=X<=Y<=N, Z, 1<=Z<=3, which defines an operation: change the sticks numbered from X to Y into the metal kind Z, where Z=1 represents the cupreous kind, Z=2 represents the silver kind and Z=3 represents the golden kind.

Output
For each case, print a number in a line representing the total value of the hook after the operations. Use the format in the example.

Sample Input
1
10
2
1 5 2
5 9 3

Sample Output
Case 1: The total value of the hook is 24.

线段树段修改,要注意每个点的最初始的值是1

#include<bits/stdc++.h>using namespace std;const int maxn=1e5+5;vector<int>A(maxn,0);const int INF=0x3f3f3f3f;int query_sum=0;int set_ql,set_qr,set_v;int query_ql,query_qr;struct node {    int l,r;    int sum;    int set;}E[3*maxn];int creat_sum(int num,int l,int r) {    E[num].l=l;    E[num].r=r;    if(l==r) E[num].sum=A[l];    else E[num].sum=creat_sum(2*num,l,(l+r)/2)+creat_sum(2*num+1,(l+r)/2+1,r);    return E[num].sum;}void maintain(int num,int l,int r) {    int lc=num*2,rc=num*2+1;    if(r>l) E[num].sum=E[lc].sum+E[rc].sum;    if(E[num].set>0)E[num].sum=E[num].set*(r-l+1);}void pushdown(int num) {    int lc=num*2,rc=num*2+1;    if(E[num].set>0) {        E[lc].set=E[rc].set=E[num].set;        E[num].set=0;    }}void update_set(int num,int l,int r) {    if(set_ql<=l&&set_qr>=r) {        E[num].set=set_v;    }    else {    pushdown(num);    int m=l+(r-l)/2;    if(set_ql<=m) update_set(num*2,l,m);else maintain(num*2,l,m);    if(set_qr>m) update_set(num*2+1,m+1,r);else maintain(num*2+1,m+1,r);    }    maintain(num,l,r);}int main(){    ios::sync_with_stdio(0);    cin.tie(0);    int T,n,q;    cin>>T;    for(int k=1;k<=T;k++) {    cin>>n;    for(int i=1;i<3*maxn;i++) E[i].set=0;    for(int i=1;i<=n;i++) A[i]=1;    cin>>q;    creat_sum(1,1,n);    for(int i=0;i<q;i++) {        cin>>set_ql>>set_qr>>set_v;        update_set(1,1,n);    }    cout<<"Case "<<k<<": The total value of the hook is "<<E[1].sum<<"."<<endl;  }    return 0;}

其实我想说的是….我很久没看过线段树的代码了,今天写题的时候居然能自己发现自己板子的错误….好开心!