hdu 1556:Color the ball(线段树,区间更新,经典题)

Color the ball

Time Limit: 9000/3000 MS
(Java/Others)    Memory Limit: 32768/32768 K
(Java/Others)
Total Submission(s): 7941    Accepted
Submission(s): 4070

Problem Description

N个气球排成一排,从左到右依次编号为1,2,3....N.每次给定2个整数a b(a <=
b),lele便为骑上他的“小飞鸽"牌电动车从气球a开始到气球b依次给每个气球涂一次颜色。但是N次以后lele已经忘记了第I个气球已经涂过几次颜色了,你能帮他算出每个气球被涂过几次颜色吗?

Input

每个测试实例第一行为一个整数N,(N <= 100000).接下来的N行,每行包括2个整数a b(1
<= a <= b <= N)。
当N = 0,输入结束。

Output

每个测试实例输出一行,包括N个整数,第I个数代表第I个气球总共被涂色的次数。

Sample Input

3

1 1

2 2

3 3

3

1 1

1 2

1 3

0

Sample Output

1 1 1

3 2 1

Author

8600

Source

HDU
2006-12 Programming Contest

Recommend

LL   |   We have
carefully selected several similar problems for you:  1542 1394 1255 2795 3397 


  线段树,区间更新,经典题

  题意:给你N个气球,不断刷新指定区间的颜色,刷新N次,最后输出每一个气球的刷新次数。

  思路

  很典型的区间更新的思想,那么很自然想到用线段树来做。线段树的每一个节点代表一个区间,并且有一个特定值来存储这个区间特定的信息,这里我们用这个特定值val记录该区间被刷新的次数。

  那么思路就有了,每一次刷新,用函数
Update(1,a,b),不断递归找到 [a,b] 区间,然后将该区间记录的值
val+1,表示该区间被刷新一次。注意必须找到区间,而且只刷新该区间的val值,如果遇到区间分开的情况,那么就分开来找。

  这样指定区间就存储了刷新的次数,我们最后要做的就是把每一条递归路径的刷新次数累加起来,最后到达的终点就是哪个气球的刷新次数。例如,有三个气球,第一个气球的刷新次数就是区间节点[1,3],[1,2]和[1,1]的val值相加。这个步骤可以在查询函数Query中做。

  代码


 1 #include <iostream>
2 #include <stdio.h>
3 using namespace std;
4 #define MAXN 100010
5 struct Node{
6 int L,R;
7 int val; //被涂过的次数
8 };
9 Node a[MAXN*3+1];
10 void Init(int d,int l,int r) //初始化线段树
11 {
12 if(l==r){ //递归出口
13 a[d].L = l;
14 a[d].R = r;
15 a[d].val = 0;
16 return ;
17 }
18
19 //初始化当前节点
20 a[d].L = l;
21 a[d].R = r;
22 a[d].val = 0;
23
24 //递归初始化孩子节点
25 int mid = (l+r)/2;
26 Init(d*2,l,mid);
27 Init(d*2+1,mid+1,r);
28 }
29 void Update(int d,int l,int r) //更新某一区间的值
30 {
31 if(a[d].L==l && a[d].R==r){ //递归出口。找到区间
32 a[d].val++;
33 return ;
34 }
35 if(a[d].L==a[d].R) //递归出口。没有找到
36 return ;
37 //没找到
38 int mid = (a[d].L+a[d].R)/2;
39 if(mid>=r){ //去左孩子找
40 Update(d*2,l,r);
41 }
42 else if(mid<l){ //去右孩子找
43 Update(d*2+1,l,r);
44 }
45 else { //中点在要查询区间的中间,两边都要找
46 Update(d*2,l,mid);
47 Update(d*2+1,mid+1,r);
48 }
49 }
50 int Query(int d,int l,int r) //查询
51 {
52 if(a[d].L==l && a[d].R==r) //找到区间
53 return a[d].val;
54 if(a[d].L==a[d].R)
55 return 0;
56
57 int mid = (a[d].L+a[d].R)/2;
58 if(mid>=r){ //去左孩子找
59 return a[d].val + Query(d*2,l,r);
60 }
61 else if(mid<l){ //去右孩子找
62 return a[d].val + Query(d*2+1,l,r);
63 }
64 else { //中点在要查询区间的中间,两边都要找
65 return a[d].val + Query(d*2,l,mid) + Query(d*2+1,mid+1,r);
66 }
67 }
68 int main()
69 {
70 int N,A,B,i,sum;
71 while(scanf("%d",&N)!=EOF && N){
72 Init(1,1,N);
73 for(i=1;i<=N;i++){ //输入并更新线段树
74 scanf("%d%d",&A,&B);
75 Update(1,A,B);
76 }
77 for(i=1;i<=N;i++){ //输出每一个气球被涂过的次数
78 sum = Query(1,i,i);
79 printf("%d",sum);
80 if(i!=N) printf(" ");
81 }
82 printf("\n");
83 }
84 return 0;
85 }

Freecode : www.cnblogs.com/yym2013

hdu 1556:Color the ball(线段树,区间更新,经典题),布布扣,bubuko.com

时间: 2024-10-08 07:56:50

hdu 1556:Color the ball(线段树,区间更新,经典题)的相关文章

hdu 1556 Color the ball(线段树区间维护+单点求值)

传送门:Color the ball Color the ball Time Limit: 9000/3000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 25511    Accepted Submission(s): 12393 Problem Description N个气球排成一排,从左到右依次编号为1,2,3....N.每次给定2个整数a b(a <= b),lele

HDU 1556 Color the ball 线段树更新区间查点

点击打开链接 Color the ball Time Limit: 9000/3000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 9120    Accepted Submission(s): 4665 Problem Description N个气球排成一排,从左到右依次编号为1,2,3....N.每次给定2个整数a b(a <= b),lele便为骑上他的"小飞鸽

HDU 1556 Color the ball 线段树

HDU 1556 Color the ball 线段树模版题,存个模板 1 #include <iostream> 2 #include <cstdio> 3 #include <fstream> 4 #include <algorithm> 5 #include <cmath> 6 #include <deque> 7 #include <vector> 8 #include <queue> 9 #inclu

hdu1556 Color the ball(线段树区间更新)

Color the ball Time Limit: 9000/3000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 12814    Accepted Submission(s): 6401 Problem Description N个气球排成一排,从左到右依次编号为1,2,3....N.每次给定2个整数a b(a <= b),lele便为骑上他的"小飞鸽"

HDU 1556 Color the Ball 线段树 题解

本题使用线段树自然能够,由于区间的问题. 这里比較难想的就是: 1 最后更新须要查询全部叶子节点的值,故此须要使用O(nlgn)时间效率更新全部点. 2 截取区间不能有半点差错.否则答案错误. 这两点卡了我下.看来我的线段树还是不够熟,须要多多练习. 线段树是二分法的高级应用,可是却不是简单应用,要锻炼好并应用好线段树思维还是比二分法难非常多的. static const int SIZE = 100005; static const int TREESIZE = SIZE<<2; int a

Color the ball 线段树 区间更新但点查询

#include<iostream> #include<cstdio> #include<cmath> #include<cstring> #include<sstream> #include<algorithm> #include<queue> #include<deque> #include<iomanip> #include<vector> #include<cmath>

hdu 1556 Color the ball(树状数组)

转载请注明出处:http://blog.csdn.net/u012860063 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1556 Problem Description N个气球排成一排,从左到右依次编号为1,2,3....N.每次给定2个整数a b(a <= b),lele便为骑上他的"小飞鸽"牌电动车从气球a开始到气球b依次给每个气球涂一次颜色.但是N次以后lele已经忘记了第I个气球已经涂过几次颜色了,你能帮他算出每个气

HDU 4902 Nice boat(线段树 区间更新)

Nice boat 大意:给你一个区间,每次可以进行两种操作,1:把区间中的数全都变成x  2:把区间中大于x的数变成gcd(a[i], x),最后输出序列. 思路:线段树成段更行,用num数组的叶子存储数据,节点当作lazy来使用. 1 #include <stdio.h> 2 const int maxn = 100005; 3 4 int num[maxn<<2]; 5 6 int gcd(int a, int b){ 7 return b?gcd(b, a%b):a; 8

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 6444 Neko&#39;s loop 线段树区间更新

题目连接:Neko's loop 题意:给一个长度为n的环,下标从0~n-1,环上每个点有个值表示到这个点会得到的快乐值.,然后每次可以花费1能量往后跳k步.你可以选择任意点开始跳,可以任意点结束,最多跳m次问得到至少s的快乐值最初要拥有多少. 题解:先把循环节挑出来,,然后在循环节上找最大字段和.循环节长度为cnt,然后就是枚举起点用线段树维护前缀和,然后取最大值. #include<bits/stdc++.h> #define ls l,m,rt<<1 #define rs m