• Just a Hook HDU


    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 <stdio.h>
    #include <stdlib.h>
    #include <cmath>
    #include <cstring>
    #include <iostream>
    #include<algorithm>
    #include <queue>
    #include <map>
    #include <vector>
    #include <cmath>
    #define INF 0x3f3f3f3f
    using namespace std;
    #define N 100005
    #define LL long long
    
    int n, m;
    
    struct td
    {
        int l, r, sum;
    }tree[N*4];
    
    void ju(int t)
    {
        if(tree[2*t].sum==tree[2*t+1].sum)
        {
            tree[t].sum=tree[2*t].sum;
        }
        else
        {
            tree[t].sum=-1;
        }
    }
    
    void build(int t, int l, int r)
    {
        tree[t].l=l;
        tree[t].r=r;
        if(l==r)
        {
            tree[t].sum=1;
            return;
        }
        int mid=(l+r)/2;
        build(2*t, l, mid);
        build(2*t+1, mid+1, r);
        ju(t);
    }
    
    void up(int t, int l, int r, int x)
    {
         if(tree[t].l==l&&tree[t].r==r)
        {
            tree[t].sum=x;
            return ;
        }
        if(tree[t].sum>0)
        {
            tree[2*t].sum=tree[t].sum;
            tree[2*t+1].sum=tree[t].sum;
        }
        int mid=(tree[t].l+tree[t].r)/2;
        if(r<=mid)
        {
            up(2*t, l, r, x);
        }
        else if(l>mid)
        {
            up(2*t+1, l, r, x);
        }
        else if(r>mid&&l<=mid)
        {
            up(2*t, l, mid, x);
            up(2*t+1, mid+1, r, x);
        }
        ju(t);
    }
    
    int qu(int t)
    {
        if(tree[t].sum==0)
        {
            return 0;
        }
        if(tree[t].sum>0)
        {
            return tree[t].sum*(tree[t].r-tree[t].l+1);
        }
        int res=0;
        res+=qu(2*t);
        res+=qu(2*t+1);
        return res;
    }
    
    int main()
    {
        int i, sum, x, y, T, t, z;
        scanf("%d", &T);
        for(t=1;t<=T;t++)
        {
            scanf("%d%d", &n, &m);
            build(1, 1, n);
            for(i=1;i<=m;i++)
            {
                scanf("%d%d%d", &x, &y, &z);
                up(1, x, y, z);
            }
            printf("Case %d: The total value of the hook is %d.
    ", t, qu(1));
        }
        return 0;
    }
  • 相关阅读:
    快速幂
    hdu 1595 find the longest of the shortest(迪杰斯特拉,减去一条边,求最大最短路)
    hdu 4121 Xiangqi
    hdu 2224 The shortest path
    hdu4923
    矩阵模板
    hdu4570(区间dp)
    hdu1978(记忆化搜索)
    hdu4283(区间dp)
    hdu1160最长递减子序列及其路径
  • 原文地址:https://www.cnblogs.com/zct994861943/p/7221431.html
Copyright © 2020-2023  润新知