博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdu1698 线段树区间更新
阅读量:7067 次
发布时间:2019-06-28

本文共 3511 字,大约阅读时间需要 11 分钟。

 

Just a Hook

Time Limit: 4000/2000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)

Total Submission(s): 25126    Accepted Submission(s): 12545


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.

 

/*hdu1698 线段树区间更新更新到指定区间时打一个标记 ,然后用push_up,push_down对标记进行处理即可hhh-2016-03-04 20:29:58*/#include 
#include
#include
#include
#include
#include
#include
#include
#include
#define lson (i<<1)#define rson ((i<<1)|1)using namespace std;typedef long long ll;const int maxn = 150050;const int inf = 0x3f3f3f3f;struct node{ int val,sum; int l,r; int mid() { return (l+r)>>1; }} tree[maxn<<2];void push_up(int i){ tree[i].sum = tree[lson].sum + tree[rson].sum;}void build(int i,int l,int r){ tree[i].l = l,tree[i].r = r; tree[i].val = 0; tree[i].sum = 1; if(l == r) { return ; } build(lson,l,tree[i].mid()); build(rson,tree[i].mid()+1,r); push_up(i);}void push_down(int i){ if(tree[i].val) { tree[lson].val = tree[i].val; tree[rson].val = tree[i].val; tree[lson].sum = tree[i].val*(tree[lson].r-tree[lson].l+1); tree[rson].sum = tree[i].val*(tree[rson].r-tree[rson].l+1); tree[i].val = 0; }}void update(int i,int l,int r,int v){ if(tree[i].l >= l && tree[i].r <= r) { tree[i].val = v; tree[i].sum = v*(tree[i].r-tree[i].l+1); return ; } push_down(i); if(l <= tree[i].mid()) update(lson,l,r,v); if(r > tree[i].mid()) update(rson,l,r,v); push_up(i);}int main(){ int T,n,q; int cas = 1; scanf("%d",&T); while(T--) { scanf("%d",&n); scanf("%d",&q); build(1,1,n); for(int i =1; i <= q; i++) { int l,r,val; scanf("%d%d%d",&l,&r,&val); update(1,l,r,val); } printf("Case %d: The total value of the hook is %d.\n",cas++,tree[1].sum); } return 0;}

  

 

 

 

转载于:https://www.cnblogs.com/Przz/p/5409611.html

你可能感兴趣的文章
洛谷P1582 倒水
查看>>
洛谷P3146 [USACO16OPEN]248
查看>>
Codeforces Round #419 (Div. 2) A-E
查看>>
【Leetcode】Path Sum II
查看>>
asp.net 2.0 导出DataTable到Excel中
查看>>
PCA算法学习_1(OpenCV中PCA实现人脸降维)
查看>>
Kinect+OpenNI学习笔记之12(简单手势所表示的数字的识别)
查看>>
对比学习UIKit和AppKit--入门级
查看>>
深入学习JVM了解JVM内存模型
查看>>
LabVIEW与Arduino的连接
查看>>
[转]MySQL排序原理与案例分析
查看>>
ILMerge合并多个DLL
查看>>
DataTable转实体类
查看>>
【转载】android软键盘的一些控制
查看>>
LeetCode: Balanced Binary Tree
查看>>
django.http.response中HttpResponse 子类
查看>>
用webmagic实现一个java爬虫小项目
查看>>
【uva 658】It's not a Bug, it's a Feature!(图论--Dijkstra或spfa算法+二进制表示+类“隐式图搜索”)...
查看>>
java for 的用法总结
查看>>
解决 多列 布局 左右等高问题
查看>>