首页 > 技术文章 > ACM: Just a Hook 解题报告 -线段树

HDMaxfun 2016-07-22 01:04 原文

E - Just a Hook
Time Limit:2000MS     Memory Limit:32768KB     64bit IO Format:%I64d & %I64u
 
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.
 
 1 #include"iostream"
 2 #include"algorithm"
 3 #include"cstdio"
 4 #include"cstring"
 5 #include"cmath"
 6 #define max(a,b) a>b?a:b
 7 #define min(a,b) a<b?a:b
 8 #define MX 100000+10000 
 9 #define INF 0x3f3f3f3f
10 #define lson l,m,rt<<1
11 #define rson m+1,r,rt<<1|1
12 using namespace std;
13 int sum[MX<<2],lazy[MX<<2];
14 int ll,n,a,b,val;
15 void PushUp(int rt) {
16     sum[rt]=sum[rt<<1]+sum[rt<<1|1];
17 }
18 
19 //这题的关键就在这个lazy数组的下沉,看了几遍别人的解题报告才写出来 。 
20 void PushDown(int rt,int m) {
21     if(lazy[rt]!=INF) {
22         lazy[rt<<1]=lazy[rt<<1|1]=lazy[rt];   //lazy标记下移 
23          sum[rt<<1]= (m-(m>>1))*lazy[rt];     //对半下分 
24          sum[rt<<1|1]=(m>>1)*lazy[rt];
25         lazy[rt]=INF;                            //标记lazy为空 
26     }
27 }
28 
29 void Build(int l,int r,int rt) {
30     lazy[rt]=INF;  //懒惰标记 
31      sum[rt]=1;     //每个节点标记为1; 
32     if(r==l) {
33         return;
34     }
35     int m=(r+l)>>1;
36     Build(lson);
37     Build(rson);
38     PushUp(rt);
39 }
40 
41 void UpData(int L,int R,int val,int l,int r,int rt) {
42     if(r<=R&&L<=l) {
43         lazy[rt]=val;        //给lazy数组赋值 
44         sum[rt]=val*(r-l+1);//因为数值是直接覆盖,所以直接用lazy的值乘以长度就是这个节点的值 
45         return ;
46     }
47     PushDown(rt,r-l+1);
48     int m=(r+l)>>1;
49     if(L<=m)UpData(L,R,val,lson);
50     if(R>m) UpData(L,R,val,rson);
51     PushUp(rt);
52 }
53 
54 int main() {
55     int T;
56     while(~scanf("%d",&T))
57         for(int qq=1; qq<=T; qq++) {
58             scanf("%d%d",&ll,&n);
59             Build(1,ll,1);
60             for(int i=1; i<=n; i++) {
61                 scanf("%d%d%d",&a,&b,&val);
62                 UpData(a,b,val,1,ll,1);
63             }
64             printf("Case %d: The total value of the hook is %d.\n",qq,sum[1]);
65         }
66     return 0;
67 }
View Code

 

推荐阅读