zoukankan      html  css  js  c++  java
  • hdu 1698 Just a Hook

    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>
    typedef struct{
        int l,r;
        int val;//这是标记作用,0代表是混着的(这个区间多种价值的stick)其余表示这个区间的stick的价值
    }point;
    point tree[300001];
    int sum=0;
    void build(int v,int l,int r)//建树
    {
        tree[v].l=l;
        tree[v].r=r;
        tree[v].val=1;
        if(l==r) return ;
        int mid=(l+r)/2;
        build(2*v,l,mid);
        build(2*v+1,mid+1,r);
    }
    void update(int v,int l,int r,int m)//更新
    {
        if(tree[v].l==l&&tree[v].r==r)
        {
            tree[v].val=m;
            return ;
        }
        if(tree[v].val!=0)//将父类中的标记进行下传
        {
            tree[2*v].val=tree[v].val;
            tree[2*v+1].val=tree[v].val;
            tree[v].val=0;
        }
        int mid=(tree[v].l+tree[v].r)/2;
        if(mid>=r) update(2*v,l,r,m);
        else if(l>mid) update(2*v+1,l,r,m);
        else {
            update(2*v,l,mid,m);
            update(2*v+1,mid+1,r,m);
        }
    }
    void query(int v,int l,int r)//查询
    {
        if(tree[v].l==l&&tree[v].r==r&&tree[v].val)
        {
            sum+=tree[v].val*(tree[v].r-tree[v].l+1);
            return ;
        }
        int mid=(tree[v].l+tree[v].r)/2;
        query(2*v,l,mid);
        query(2*v+1,mid+1,r);
        
    }
    int main()
    {
        int t,n,m,i,j=1,a,b,c;
        scanf("%d",&t);
        while(t--)
        {
            scanf("%d",&n);
            build(1,1,n);
            scanf("%d",&m);
            for(i=1;i<=m;i++)
            {
                scanf("%d%d%d",&a,&b,&c);
                update(1,a,b,c);
            }
            query(1,1,n);
            printf("Case %d: The total value of the hook is ",j++);
            printf("%d.
    ",sum);
            sum=0;
        }
        return 0;
    }
  • 相关阅读:
    格式化输出函数(1): Format
    ini 文件操作记要(2): 使用 TMemIniFile
    文本文件读写
    格式化输出函数(3): FormatFloat
    Delphi 中的哈希表(2): TStringHash
    格式化输出函数(2): FormatDateTime
    Delphi 中的哈希表(1): THashedStringList
    调用系统关于对话框
    在Ubuntu上安装Thrift并调通一个例子
    rpm2html/rpmfind
  • 原文地址:https://www.cnblogs.com/duan-to-success/p/3659791.html
Copyright © 2011-2022 走看看