zoukankan      html  css  js  c++  java
  • HDOJ 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.
    思路:
    区间修改 区间查询
    因为题目中的操作并非加减而是修改 直接进行区间覆盖就可以
    因为是多组询问 在建树的时候不仅要对tree[rt].w进行赋值 还要对tree[rt].lazy进行初始化
    代码:
    #include <iostream>
    #include <cstdio>
    #include <cstdlib>
    #include <cmath>
    #include <string>
    #include <cstring>
    #include <algorithm>
    
    using namespace std;
    typedef long long ll;
    typedef unsigned long long ull;
    const int inf=0x3f3f3f3f;
    const int maxn=1e5+10;
    int n,m,t,x,y,z,ans;
    
    struct node{
        int l,r,w,lazy;
    }tree[maxn<<2];
    
    void build(int l,int r,int rt){
        tree[rt].l=l;
        tree[rt].r=r;
        if(l==r){
            tree[rt].w=1;
            tree[rt].lazy=0;
            return;
        }
        int mid=(l+r)/2;
        build(l,mid,rt*2);
        build(mid+1,r,rt*2+1);
        tree[rt].w=tree[rt*2].w+tree[rt*2+1].w;
        tree[rt].lazy=0;
    }
    
    void pushdown(int rt){
        tree[rt*2].lazy=tree[rt].lazy;
        tree[rt*2+1].lazy=tree[rt].lazy;
        tree[rt*2].w=tree[rt].lazy*(tree[rt*2].r-tree[rt*2].l+1);
        tree[rt*2+1].w=tree[rt].lazy*(tree[rt*2+1].r-tree[rt*2+1].l+1);
        tree[rt].lazy=0;
    }
    
    void update(int rt){
        if(tree[rt].l>=x && tree[rt].r<=y){
        //    int index=z-tree[rt].w;
            tree[rt].w=z*(tree[rt].r-tree[rt].l+1);
            tree[rt].lazy=z;
            return;
        }
        if(tree[rt].lazy) pushdown(rt);
        int mid=(tree[rt].l+tree[rt].r)/2;
        if(x<=mid) update(rt*2);
        if(y>mid) update(rt*2+1);
        tree[rt].w=tree[rt*2].w+tree[rt*2+1].w;
    } 
    
    void query(int rt){
        if(tree[rt].l>=1 && tree[rt].r<=n){
            ans+=tree[rt].w;
            return;
        }
        if(tree[rt].lazy) pushdown(rt);
        int mid=(tree[rt].l+tree[rt].r)/2;
        if(mid>=1) query(rt*2);
        if(n>mid) query(rt*2+1); 
    }
    
    int main(){
        scanf("%d",&t);
        for (int id=1;id<=t;id++){
            scanf("%d",&n);
            build(1,n,1);
            scanf("%d",&m);
            for(int i=1;i<=m;i++){
                scanf("%d%d%d",&x,&y,&z);
                update(1);
            }
            ans=0;
            query(1);
            printf("Case %d: The total value of the hook is %d.
    ",id,ans);
        }
        return 0;
    }
  • 相关阅读:
    LevelDB
    Erlang的gen_server的terminate()/2未执行
    集群间心跳检测
    AI从业者关于数学的一些小建议
    《百面机器学习》拾贝----第三章:经典算法
    Demo——Image classification
    《百面机器学习》拾贝----第二章:模型评估
    《百面机器学习》拾贝----第一章:特征工程
    算法工程师---职业生涯规划
    License Plate Detection and Recognition in Unconstrained Scenarios(无约束场景下的车牌检测与识别)
  • 原文地址:https://www.cnblogs.com/whdsunny/p/10467985.html
Copyright © 2011-2022 走看看