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);
        }
    }
  • 相关阅读:
    Java泛型 T.class的获取
    Android ant自动打包脚本:自动替换友盟渠道、版本号、包名
    验证:mysql AUTO_INCREMENT 默认值是1
    双重OAuth 2.0架构
    使用coding、daocloud和docker打造markdown纯静态博客
    创业小坑:内网域名 在windows下能nslookup,但ping不通,也无法访问。而在linux下正常。
    freeradius 安装出错的解决办法
    与锤子手机HR的对话——创业没有联合创始人,CTO 等高管会把它当做自己的事业吗?
    LBS数据分析:使用地图展示统计数据——麻点图与麻数图
    PHP极客水平测试——给创业公司用的远程面试题
  • 原文地址:https://www.cnblogs.com/joeylee97/p/7338923.html
Copyright © 2011-2022 走看看