zoukankan      html  css  js  c++  java
  • Just a Hook(HDU1698 线段树的简单应用)

    Just a Hook

    Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)


    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.
    #include <iostream>
    #include <cstdio>
    #include <cmath>
    #include <cstring>
    #include <cstdlib>
    #include <queue>
    #include <stack>
    #include <set>
    #include <vector>
    #include <algorithm>
    #define LL long long
    
    using namespace std;
    
    const int Max = 110000;
    
    typedef struct Node
    {
        int val;//记录区间的价值
       
        int data;//记录区间的共同的值(区间的值不相同的为零)
    }Tree;
    
    Tree Tr[Max*4];
    
    int N,Q;
    
    void Push_up(int st)//统计区间的信息
    {
        Tr[st].val = Tr[st<<1].val + Tr[st<<1|1].val;
        
        if(Tr[st<<1].data==Tr[st<<1|1].data&&Tr[st<<1].data)
        {
            Tr[st].data=Tr[st<<1].data;
        }
        else
        {
            Tr[st].data=0;
        }
    }
    
    void Push_down(int st,int L,int R)
    {
        if(Tr[st].data)
        {
            Tr[st<<1].data = Tr[st<<1|1].data = Tr[st].data;
    
            int mid = (L+R)>>1;
    
            Tr[st<<1].val=(mid-L+1)*Tr[st<<1].data;
    
            Tr[st<<1|1].val=(R-mid)*Tr[st<<1|1].data;
        }
    }
    
    void Build(int L,int R,int st)
    {
        Tr[st].data = 0;
        
        Tr[st].val = 0;
        
        if(R == L)
        {
            Tr[st].data = 1;
            
            Tr[st].val = 1;
            
            return ;
        }
    
        int mid = (L+R)>>1;
    
        Build(L,mid,st<<1);
    
        Build(mid+1,R,st<<1|1);
    
        Push_up(st);
    }
    
    void Update(int L,int R, int st, int l, int r, int d)
    {
        if(L > r ||R < l)
        {
            return ;
        }
        if(L>=l&&R<=r)
        {
            Tr[st].data = d;
    
            Tr[st].val=d*(R-L+1);
    
            return ;
        }
    
        Push_down(st,L,R);
    
        int mid = (L+R)>>1;
    
        if(l<=mid)
        {
            Update(L,mid,st<<1,l,r,d);
        }
        if(r>mid)
        {
            Update(mid+1,R,st<<1|1,l,r,d);
        }
    
        Push_up(st);
    }
    
    int main()
    {
        int T;
    
        int x,y,d;
    
        scanf("%d",&T);
    
        for(int z = 1; z <= T;z++)
        {
            scanf("%d %d",&N,&Q);
    
            Build(1,N,1);
    
            while(Q--)
            {
                scanf("%d %d %d",&x,&y,&d);
    
                Update(1,N,1,x,y,d);
            }
    
            printf("Case %d: The total value of the hook is %d.
    ",z,Tr[1].val);
        }
        return 0;
    }
    


     
  • 相关阅读:
    Android 面试题(答案最全)
    Android Studio导入github下载的工程
    Android清除本地数据缓存代码
    内存缓存LruCache实现原理
    OD调试器调试Delphi程序按钮事件断点方法
    OllyDBG找到按钮的处理函数
    delphi中Record 和Packed Record的区别
    这些年,我们自己换的滤芯
    大众车机天宝187A Hack笔记
    Delphi中DLL的创建和使用
  • 原文地址:https://www.cnblogs.com/juechen/p/5255904.html
Copyright © 2011-2022 走看看