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.

解题思路:题目大意:在DOTA里有一个英雄帕琪(不玩,不知道叫啥,还是屠夫来着),他有一个肉钩,巨长,然后默认都是黄铜做的,每一节的价值都为1。然后他要改变钩子连续链节,换成别的材质。然后题目开始输入样例的个数,然后是钩子的链节数,接下来是操作的次数。后面就是更改了,1是黄铜,2是白银,3是金,价值也是这个数。

有一根棍,现在要给他表面镀上一层金属,(本身这根棍是铜的)

铜的价值是1

银得价值是2

金的价值是3

求最后的价值是多少。

这是区间值的修改,所以不同于之前的区间累加,lazy值是不用累加的;代码如下:
 1 #include<iostream>
 2 #include<stdio.h>
 3 using namespace std;
 4
 5 int T;
 6 int N;
 7 int M;
 8 const int MAXN = 1000005;
 9 int a[MAXN];
10 int tree[MAXN*4];
11 int lazy[MAXN*4];
12 int x , y , k ;
13 int num = 0;
14 void push_down(int l ,int r ,int rt)
15 {
16     int m = (l+r)/2;
17
18     if(lazy[rt])
19     {
20         tree[rt*2] = lazy[rt]*(m-l+1);
21         tree[rt*2+1] = lazy[rt]*(r-m);
22         lazy[rt*2] = lazy[rt];
23         lazy[rt*2+1] = lazy[rt];
24         lazy[rt] = 0;
25     }
26 }
27 void bulid_tree(int l ,int r ,int rt)
28 {
29     lazy[rt] = 0;
30     if(l==r)
31     {
32         tree[rt] = a[l];
33         return ;
34     }
35     int m = (l+r)/2;
36     bulid_tree(l,m,rt*2);
37     bulid_tree(m+1,r,rt*2+1);
38     tree[rt] = tree[rt*2]+tree[rt*2+1];
39 }
40
41 void Update(int x ,int y ,int value, int l ,int r ,int rt)
42 {
43     if(x<=l&&r<=y)
44     {
45         tree[rt] = value*(r-l+1);
46         lazy[rt] = value;
47         return ;
48     }
49     push_down(l,r,rt);
50     int m = (l+r)/2;
51
52     if(x<=m)
53     {
54         Update(x,y,value,l,m,rt*2);
55     }
56
57     if(y>m)
58     {
59         Update(x,y,value,m+1,r,rt*2+1);
60     }
61     tree[rt] = tree[rt*2] +tree[rt*2+1];
62 }
63 int main()
64 {
65     scanf("%d",&T);
66     while(T--)
67     {
68         num++;
69         scanf("%d",&N);
70         for(int i = 1 ; i <= N ;i++)
71         {
72             a[i] = 1;    //首先全部是铜,值为1;
73         }
74         bulid_tree(1,N,1);
75         scanf("%d",&M);
76         while(M--)
77         {
78             scanf("%d%d%d",&x,&y,&k);
79             Update(x,y,k,1,N,1);
80         }
81         printf("Case %d: The total value of the hook is %d.\n",num,tree[1]);      //根实际上就是总和;
82     }
83     return 0;
84 }


原文地址:https://www.cnblogs.com/yewanting/p/10801342.html

时间: 2024-09-27 09:34:06

HDU - 1698 Just a Hook(线段树区间整体修改值,查询区间和)的相关文章

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): 17214    Accepted Submission(s): 8600 Problem Description In the game of DotA, Pudge’s meat hook is actually the most horrible thing f

HDU 1698 Just a Hook(线段树区间替换)

题目地址:HDU 1698 区间替换裸题.同样利用lazy延迟标记数组,这里只是当lazy下放的时候把下面的lazy也全部改成lazy就好了. 代码如下: #include <iostream> #include <cstdio> #include <string> #include <cstring> #include <stdlib.h> #include <math.h> #include <ctype.h> #in

HDU 1698 Just a Hook (线段树 成段更新 lazy-tag思想)

题目链接 题意: n个挂钩,q次询问,每个挂钩可能的值为1 2 3,  初始值为1,每次询问 把从x到Y区间内的值改变为z.求最后的总的值. 分析:用val记录这一个区间的值,val == -1表示这个区间值不统一,而且已经向下更新了, val != -1表示这个区间值统一, 更新某个区间的时候只需要把这个区间分为几个区间更新就行了, 也就是只更新到需要更新的区间,不用向下更新每一个一直到底了,在更新的过程中如果遇到之前没有向下更新的, 就需要向下更新了,因为这个区间的值已经不统一了. 其实这就

HDU 1698 Just a Hook 线段树解法

很经典的题目,而且是标准的线段树增加lazy标志的入门题目. 做了好久线段树,果然是practice makes perfect, 这次很畅快,打完一次性AC了. 标志的线段树函数. 主要是: 更新的时候只更新到需要的节点,然后最后的时候一次性把所以节点都更新完毕. 这也是线段树常用的技术. #include <stdio.h> const int SIZE = 100005; struct Node { bool lazy; int metal; }; const int TREESIZE

hdu 1698 Just a Hook 线段树区间更新

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

HDU 1698 just a hook 线段树,区间定值,求和

Just a Hook Time Limit: 1 Sec  Memory Limit: 256 MB 题目连接 http://acm.hdu.edu.cn/showproblem.php?pid=1698 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 cons

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): 21856    Accepted Submission(s): 10963 Problem Description In the game of DotA, Pudge's meat hook is actually the most horrible thing

(简单) HDU 1698 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

[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): 18378    Accepted Submission(s): 9213 Problem Description In the game of DotA, Pudge’s meat hook is actually the most horrible thing f

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): 18384    Accepted Submission(s): 9217 Problem Description In the game of DotA, Pudge's meat hook is actually the most horrible thing