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

这是一条逆向向下更新才比較方便处理数据的题目。

每一个根节点并不是记录和。而是记录改下标下面的节点更新了一次。

所以更新的时候须要注意,小于区间的节点要-1操作。

就这点技巧。

#include <cstdio>
#include <algorithm>
using namespace std; int tree[100005]; inline int lowbit(int x)
{
return x & (-x);
} void update(int x, int val, int len)
{
while (x > 0)
{
tree[x] += val;
x -= lowbit(x);//最高点记录了一个区间内涂了多少次
}
} int query(int x, int len)
{
int ans = 0;
while (x <= len)
{
ans += tree[x];
x += lowbit(x);//全部根节点相加才等于答案
}
return ans;
} int main()
{
int n, a, b;
while (scanf("%d", &n) && n != 0)
{
fill(tree, tree+n+1, 0);
for(int i = 0; i < n; i++)
{
scanf("%d%d",&a,&b);
update(b,1, n);
update(a-1,-1, n); }
for(int i=1;i<n;i++)
{
printf("%d ",query(i, n));
}
printf("%d\n",query(n, n));
}
return 0;
}

事实上也能够正向填表,和一般的查询和操作几乎相同,只是注意怎样更新节点。

的确困难,非常考脑力的。要非常用力地想,呵呵。

#include <cstdio>
#include <algorithm>
using namespace std; const int SIZE = 100005;
int tree[SIZE]; inline int lowbit(int x)
{
return x & (-x);
} void update(int x, int val, int len)
{
while (x <= len)
{
tree[x] += val;
x += lowbit(x);
}
} int query(int x)
{
int ans = 0;
while (x > 0)
{
ans += tree[x];
x -= lowbit(x);
}
return ans;
} int main()
{
int n, a, b;
while (scanf("%d", &n) && n != 0)
{
fill(tree, tree+n+1, 0);
for(int i = 0; i < n; i++)
{
scanf("%d%d",&a,&b);
update(a,1, n);
update(b+1,-1, n); }
for(int i=1;i<n;i++)
{
printf("%d ",query(i));
}
printf("%d\n",query(n));
}
return 0;
}

还有以下这位朋友的博客的直接使用数组解决这个问题,使得时间效率达到O(n)了,非常巧妙,高手!

http://blog.csdn.net/u011560507/article/details/9673529

仿他的写了个,呵呵。

#include <algorithm>
#include<cstdio>
using namespace std;
const int SIZE = 100002;
int arr[SIZE];
int main()
{
int N;
while(scanf("%d",&N) && N)
{
fill(arr, arr+N+1, 0); for(int i = 1; i <= N; i++)
{
int a, b;
scanf("%d %d",&a, &b);
arr[a]++;
arr[b+1]--;
}
for(int i = 1; i < N; i++)
{
arr[i] += arr[i-1];
printf("%d ", arr[i]);
}
printf("%d\n", arr[N] + arr[N-1]);
}
return 0;
}

HDU 1556 Color the ball 树状数组 题解的更多相关文章

  1. HDOJ/HDU 1556 Color the ball(树状数组)

    Problem Description N个气球排成一排,从左到右依次编号为1,2,3-.N.每次给定2个整数a b(a <= b),lele便为骑上他的"小飞鸽"牌电动车从 ...

  2. HDU 1556 Color the ball (树状数组区间更新)

    水题,练习一下树状数组实现区间更新. 对于每个区间,区间左端点+1,右端点的后一位-1,查询每个位置的覆盖次数 #include <cstdio> #include <cstring ...

  3. Color the ball(树状数组+线段树+二分)

    Color the ball Time Limit : 9000/3000ms (Java/Other)   Memory Limit : 32768/32768K (Java/Other) Tota ...

  4. HDU 1556 Color the ball【差分数组裸题/模板】

    N个气球排成一排,从左到右依次编号为1,2,3....N.每次给定2个整数a b(a <= b),lele便为骑上他的"小飞鸽"牌电动车从气球a开始到气球b依次给每个气球涂一 ...

  5. hdu 1556:Color the ball(第二类树状数组 —— 区间更新,点求和)

    Color the ball Time Limit: 9000/3000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)To ...

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

    Color the ball Time Limit: 9000/3000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)To ...

  7. HDU.1556 Color the ball (线段树 区间更新 单点查询)

    HDU.1556 Color the ball (线段树 区间更新 单点查询) 题意分析 注意一下pushdown 和 pushup 模板类的题还真不能自己套啊,手写一遍才行 代码总览 #includ ...

  8. HDU 5862 Counting Intersections(离散化+树状数组)

    HDU 5862 Counting Intersections(离散化+树状数组) 题目链接http://acm.split.hdu.edu.cn/showproblem.php?pid=5862 D ...

  9. hdu 5517 Triple(二维树状数组)

    Triple Time Limit: 12000/6000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)Total Sub ...

随机推荐

  1. spring boot实战读书笔记1

    1 覆盖起步依赖引入的传递依赖. 以Spring Boot的Web起步依赖为例,它传递依赖了Jackson JSON库.如果不想使用,可以使用 <exclusions>元素去除Jackso ...

  2. HTML5游戏实战之精灵翻转

    要实现精灵的翻转.很easy.先看实际效果点这里. 代码仅仅有区区几行: var sp = this.getWindow().find("ui-status2-general"); ...

  3. 「Java Web」主页静态化的实现

    一个站点的主页一般不会频繁变动,而大多数用户在訪问站点时不过浏览一下主页(未登陆).然后就离开了.对于这类訪问请求.假设每次都要通过查询数据库来显示主页的话,显然会给server带来多余的压力. 这时 ...

  4. [面试题] Find next higher number with same digits

    Find next higher number with same digits. Example 1 : if num = 25468, o/p = 25486 Example 2 : if num ...

  5. Ubuntu和centos下查看包的安装路径

    安装包后,如何查看安装的具体路径? Ubuntu下: dpkg -L  <包名> CentOS下: rpm -ql   <包名> 助记: l为list的首字母. q为query ...

  6. [k8s]容器化node-expolore(9100)+cadvisor(8080)+prometheus(9090) metric搜集,grafana展示

    Prometheus 的核心,多维数据模型 传统监控工具统计数据方式 指标多 - 需求1,统计app1-3,的(总)内存,则定义3个指标 container.memory_usage_bytes.we ...

  7. CCRepeatForever和CCDelayTime

    有限次执行一组动作和无限次执行一组动作 void ActionRotateJerk::onEnter() { ActionsDemo::onEnter(); centerSprites(); CCFi ...

  8. 【Ubuntu】用户切换到root

    出于安全考虑,默认时 Ubuntu 的 root 用户时没有固定密码的,它的密码是随机产生并且动态改变的,貌似是每5分钟改变一次,所以用 su(switch user) 是不可以的,因为我们不知道 r ...

  9. 用C++画光(二)——矩形

    在上篇文章的基础上,做了许多调整,修复了许多BUG.在解决bug的过程中,我逐渐领悟到一个要领:枯燥地一步步调试太痛苦了,找不到问题的根源!所以我选择将中间结果打到图片上.如: (注意,里面的点是我随 ...

  10. 在IIS6上部署WebService

    在IIS6上部署WebService 2016-12-07 目录: 1 创建web service项目2 部署WebService3 浏览页面 1 创建web service项目 返回 用Visual ...