zoukankan      html  css  js  c++  java
  • hdu1698 线段树区间更新

    Just a Hook

    Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
    Total Submission(s): 25126    Accepted Submission(s): 12545


    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.
    /*
    hdu1698 线段树区间更新
    更新到指定区间时打一个标记 ,然后用push_up,push_down对标记进行处理即可
    hhh-2016-03-04 20:29:58
    */
    #include <algorithm>
    #include <cmath>
    #include <queue>
    #include <iostream>
    #include <cstring>
    #include <map>
    #include <cstdio>
    #include <vector>
    #include <functional>
    #define lson (i<<1)
    #define rson ((i<<1)|1)
    using namespace std;
    typedef long long ll;
    const int maxn = 150050;
    const int inf = 0x3f3f3f3f;
    
    struct node
    {
        int val,sum;
        int l,r;
        int mid()
        {
            return (l+r)>>1;
        }
    } tree[maxn<<2];
    
    void push_up(int i)
    {
        tree[i].sum = tree[lson].sum + tree[rson].sum;
    }
    
    void build(int i,int l,int r)
    {
        tree[i].l = l,tree[i].r = r;
        tree[i].val = 0;
        tree[i].sum = 1;
        if(l == r)
        {
            return ;
        }
        build(lson,l,tree[i].mid());
        build(rson,tree[i].mid()+1,r);
        push_up(i);
    }
    
    void push_down(int i)
    {
        if(tree[i].val)
        {
            tree[lson].val = tree[i].val;
            tree[rson].val = tree[i].val;
            tree[lson].sum = tree[i].val*(tree[lson].r-tree[lson].l+1);
            tree[rson].sum = tree[i].val*(tree[rson].r-tree[rson].l+1);
            tree[i].val = 0;
        }
    }
    
    
    void update(int i,int l,int r,int v)
    {
        if(tree[i].l >= l && tree[i].r <= r)
        {
            tree[i].val = v;
            tree[i].sum = v*(tree[i].r-tree[i].l+1);
            return ;
        }
        push_down(i);
        if(l <= tree[i].mid())
            update(lson,l,r,v);
        if(r > tree[i].mid())
            update(rson,l,r,v);
        push_up(i);
    }
    
    
    int main()
    {
        int T,n,q;
        int cas = 1;
        scanf("%d",&T);
        while(T--)
        {
            scanf("%d",&n);
            scanf("%d",&q);
            build(1,1,n);
            for(int i =1; i <= q; i++)
            {
                int l,r,val;
                scanf("%d%d%d",&l,&r,&val);
                update(1,l,r,val);
            }
            printf("Case %d: The total value of the hook is %d.
    ",cas++,tree[1].sum);
        }
        return 0;
    }
    

      


  • 相关阅读:
    2018.12.1 区块链论文翻译
    2018.11.29 区块链论文翻译
    jshell 一个代码片段测试工具(jdk9后新增的功能)
    java 的var 定义变量有点鸡肋...
    小心Math.abs(-2147483648)的坑
    java获取同级目录下的文件
    java获取formdata里的所有参数
    No enclosing instance of type VolatleTest is accessible. Must qualify the allocation with an enclosing instance of type VolatleTest
    if else太多怎么代替,太难维护?可以使用spring-plugin 插件系统
    设计一个泛型的获取数组最大值的函数.并且这个方法只能接受Number的子类并且实现了Comparable接口
  • 原文地址:https://www.cnblogs.com/Przz/p/5409611.html
Copyright © 2011-2022 走看看