HDU1698 Just a Hook

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.

Source

2008 “Sunline Cup” National Invitational Contest

一般的线段树区间修改。但是这题有个坑处,就是区间值是直接替换而非增加值,所以pushdown的时候一定要把子节点的值也更新。←因为这个被坑了半小时青春

 1 #include<iostream>
 2 #include<cstdio>
 3 #include<algorithm>
 4 #include<cstring>
 5 #include<cmath>
 6 #define ls l,mid,rt<<1
 7 #define rs mid+1,r,rt<<1|1
 8 using namespace std;
 9 const int mxn=200000;
10 int n,m;
11 int ans=0;
12 struct tree{
13     int sum;
14     int add;
15 }tr[mxn*4];
16 void Build(int l,int r,int rt){
17     if(l==r){
18         tr[rt].sum=1;
19         tr[rt].add=0;
20         return;
21     }
22     int mid=(l+r)>>1;
23     Build(ls);
24     Build(rs);
25     tr[rt].sum=tr[rt<<1].sum+tr[rt<<1|1].sum;
26     return;
27 }
28 void change(int L,int R,int x,int l,int r,int rt){
29     if(tr[rt].add){
30         int mid=(l+r)>>1;
31         tr[rt<<1].sum=(mid-l+1)*tr[rt].add;//更新下面的值很重要!
32         tr[rt<<1|1].sum=(r-mid)*tr[rt].add;//更新!
33         tr[rt<<1].add=tr[rt<<1|1].add=tr[rt].add;
34         tr[rt].add=0;
35     }
36     if(L<=l && r<=R){
37         tr[rt].sum=(r-l+1)*x;
38         tr[rt].add=x;
39         return;
40     }
41     int mid=(l+r)>>1;
42     if(L<=mid)change(L,R,x,ls);
43     if(R>mid)change(L,R,x,rs);
44     tr[rt].sum=tr[rt<<1].sum+tr[rt<<1|1].sum;
45     return;
46 }
47
48 int main(){
49     int T;
50     scanf("%d",&T);
51     for(int ro=1;ro<=T;ro++){
52         memset(tr,0,sizeof tr);
53         scanf("%d",&n);
54         Build(1,n,1);
55         scanf("%d",&m);
56         int i,j;
57         int x,y,z;
58         for(i=1;i<=m;i++){
59             scanf("%d%d%d",&x,&y,&z);
60             change(x,y,z,1,n,1);
61         }
62         printf("Case %d: The total value of the hook is %d.\n",ro,tr[1].sum);
63
64     }
65     return 0;
66 }
时间: 2024-08-25 11:45:49

HDU1698 Just a Hook的相关文章

hdu1698 Just a Hook 线段树:成段替换,总区间求和

转载请注明出处:http://blog.csdn.net/u012860063 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1698 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 consecut

线段树专题—HDU1698 Just a Hook

题意:t组数据,给一个n.m表示n长度的钩和m次操作.初始钩子的每单位长度的价值为1,接下来输入 x,y,k 的操作把钩子[x,y]区间的价值替换为k,求m次操作后钩子的价值为多少 分析:成段替换.最后仅仅要求第一个区间就能够了,使用不用写query询问 代码: #include <iostream> #include <cstdio> #include <cstring> #include <queue> #include <algorithm>

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 t

HDU1698 Just a Hook (区间更新)

Just a Hook Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 23644    Accepted Submission(s): 11839 Problem Description In the game of DotA, Pudge’s meat hook is actually the most horrible thing

HDU1698 Just a Hook 【线段树】+【成段更新】+【lazy标记】

Just a Hook Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 15889    Accepted Submission(s): 7897 Problem Description In the game of DotA, Pudge's meat hook is actually the most horrible thing

Hdu1698 Just a Hook(线段树成段更新)

题意很简单:1-n个钩子初始价值是1,然后题目给出Q个操作,x y z,将x->y的钩子价值改为z,最后输出n个钩子的总价值. 线段树功能:update:成段替换 (由于只query一次总区间,所以可以直接输出1结点的信息) //3160 KB 624 ms #include<cstdio> #include<iostream> #include<cstring> #include<algorithm> #define M 100005 #define

【原创】hdu1698 Just a Hook(线段树→区间更新,区间查询)

学习线段树第二天,这道题属于第二简单的线段树,第一简单是单点更新,这个属于区间更新. 区间更新就是lazy思想,我来按照自己浅薄的理解谈谈lazy思想: 就是在数据结构中,树形结构可以线性存储(线性表)也可以树状存储(链表) 树形typedef struct node { int data; struct node* Lchild; struct node* Rchild; }Btree,*BTree;BTree = (BTree)malloc(Btree);好像是这样吧...大半个暑假过去忘得

HDU1698:Just a Hook(线段树区域更新模板题)

http://acm.hdu.edu.cn/showproblem.php?pid=1698 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 len

HDU-1698 Just a Hook (线段树、段变换(覆盖))

Just a Hook Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 34542    Accepted Submission(s): 16868 Problem Description In the game of DotA, Pudge's meat hook is actually the most horrible thing