• HDU 1698 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.
    题意
    1-n的编号,初始为全价值都为1,有Q个询问,每次询问让你把[X,Y]变成价值Z
    题解
    线段树区间更新延迟标记,区间查询
    代码
     1 #include<stdio.h>
     2 #include<string.h>
     3 
     4 const int N=1e5+5;
     5 
     6 int sum[N<<2],lazy[N<<2],ans;
     7 
     8 void PushDown(int rt)
     9 {
    10     if(lazy[rt])
    11     {
    12         lazy[rt<<1]=lazy[rt<<1|1]=lazy[rt];
    13         lazy[rt]=0;
    14     }
    15 }
    16 void Update(int L,int R,int C,int l,int r,int rt)
    17 {
    18     if(L<=l&&r<=R)
    19     {
    20         lazy[rt]=C;
    21         return;
    22     }
    23     int mid=(l+r)>>1;
    24     PushDown(rt);
    25     if(L<=mid)Update(L,R,C,l,mid,rt<<1);
    26     if(R>mid)Update(L,R,C,mid+1,r,rt<<1|1);
    27 }
    28 void Query(int l,int r,int rt)
    29 {
    30     if(lazy[rt]==-1||lazy[rt]==1)
    31     {
    32         ans+=r-l+1;
    33         return;
    34     }
    35     else if(lazy[rt]==2)
    36     {
    37         ans+=2*(r-l+1);
    38         return;
    39     }
    40     else if(lazy[rt]==3)
    41     {
    42         ans+=3*(r-l+1);
    43         return;
    44     }
    45     int mid=(l+r)>>1;
    46     if(l<=mid)Query(l,mid,rt<<1);
    47     if(r>mid)Query(mid+1,r,rt<<1|1);
    48 }
    49 int main()
    50 {
    51     int t,n,q,x,y,z,o=1;
    52     scanf("%d",&t);
    53     while(t--)
    54     {
    55         memset(lazy,-1,sizeof lazy);
    56         scanf("%d%d",&n,&q);
    57         for(int i=0;i<q;i++)
    58         {
    59             scanf("%d%d%d",&x,&y,&z);
    60             Update(x,y,z,1,n,1);
    61         }
    62         ans=0;
    63         Query(1,n,1);
    64         printf("Case %d: The total value of the hook is %d.
    ",o++,ans);
    65     }
    66     return 0;
    67 }
  • 相关阅读:
    Linux shell 脚本中变量的数学计算【转】
    Ubuntu上配置Eclipse:安装CDT【转】
    第一个Java程序示例——Hello World!【转】
    Cmake的介绍和使用 Cmake实践【转】
    CMake使用总结【转】
    Ubuntu 16.04安装JDK/JRE并配置环境变量【转】
    Linux进程间通信——使用信号量【转】
    wpa_supplicant介绍【转】
    【转】Android屏幕适配全攻略(最权威的官方适配指导)
    SQL2005备份数据库到远程服务器中
  • 原文地址:https://www.cnblogs.com/taozi1115402474/p/9278923.html
Copyright © 2020-2023  润新知