zoukankan      html  css  js  c++  java
  • Just a Hook 线段树 区间更新

    Just a Hook

     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.

    InputThe 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. 
    OutputFor 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.

    #include<iostream>
    #include<cstdio>
    #include<queue>
    #include<algorithm>
    #include<cstring>
    #include<string>
    #include<bitset>
    #include<stack>
    using namespace std;
    typedef long long LL;
    #define MAXN 100009
    #define N 25
    #define INF 0x3f3f3f3f
    
    /*
    线段树 区间更新!
    */
    struct node
    {
        int l, r, data, laz;
        int sum;
    }T[MAXN*4];
    void Build(int p, int l, int r)
    {
        T[p].l = l, T[p].r= r, T[p].data = 0, T[p].laz = 0;
        T[p].sum = 0;
        if (l == r)
        {
            T[p].sum = 1;
            return;
        }
        int mid = (l + r) / 2;
        Build(p << 1, l, mid);
        Build((p << 1) | 1, mid + 1, r);
        T[p].sum = T[p << 1].sum + T[(p << 1) | 1].sum;
    }
    void update(int p, int l, int r, int v)
    {
        int mid = (T[p].l + T[p].r) / 2;
        if (T[p].l >= l&&T[p].r <= r)
        {
            T[p].data = v;
            T[p].laz = 1;//这一块被成块更新过
            T[p].sum = (r - l + 1)*v;
            return;
        }
        if (T[p].laz)//如果被更新过,那么说明这一块内的颜色会有多种
        {
            T[p].laz = 0;
            update(p << 1, T[p].l, mid, T[p].data);
            update((p << 1) | 1, mid + 1, T[p].r, T[p].data);
            T[p].data = 0;
        }
        if (r <= mid)
            update(p << 1, l, r, v);
        else if (l > mid)
            update((p << 1) | 1, l, r, v);
        else
        {
            update(p << 1, l, mid, v);
            update((p << 1) | 1, mid + 1, r, v);
        }
        T[p].sum = T[p << 1].sum + T[(p << 1) | 1].sum;
    }
    
    int main()
    {
        int t, n, l, r, v, q;
        int cas = 1;
        scanf("%d", &t);
        while (t--)
        {
            scanf("%d%d", &n, &q);
            Build(1, 1, n);
            while (q--)
            {
                scanf("%d%d%d", &l, &r, &v);
                update(1, l, r, v);
            }
            printf("Case %d: The total value of the hook is %d.
    ", cas++, T[1].sum);
        }
    }
  • 相关阅读:
    快速开发一个自己的微信小程序
    ES6系列汇总
    数组、Set对象的互相转换
    CORS 跨域
    模板引擎之hogan.js
    Flex 布局语法教程
    ES6 Javascript 实用开发技巧
    几种知名开源富文本编辑器对比
    python 字符串的一些操作
    python os模块一些常用操作
  • 原文地址:https://www.cnblogs.com/joeylee97/p/7338923.html
Copyright © 2011-2022 走看看