HDU 1556 Color the ball 树状数组 题解
可是N次以后lele已经忘记了第I个气球已经涂过几次颜色了。你能帮他算出每一个气球被涂过几次颜色吗?
当N = 0。输入结束。
3
1 1
2 2
3 3
3
1 1
1 2
1 3
0
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 树状数组 题解的更多相关文章
- HDOJ/HDU 1556 Color the ball(树状数组)
Problem Description N个气球排成一排,从左到右依次编号为1,2,3-.N.每次给定2个整数a b(a <= b),lele便为骑上他的"小飞鸽"牌电动车从 ...
- HDU 1556 Color the ball (树状数组区间更新)
水题,练习一下树状数组实现区间更新. 对于每个区间,区间左端点+1,右端点的后一位-1,查询每个位置的覆盖次数 #include <cstdio> #include <cstring ...
- Color the ball(树状数组+线段树+二分)
Color the ball Time Limit : 9000/3000ms (Java/Other) Memory Limit : 32768/32768K (Java/Other) Tota ...
- HDU 1556 Color the ball【差分数组裸题/模板】
N个气球排成一排,从左到右依次编号为1,2,3....N.每次给定2个整数a b(a <= b),lele便为骑上他的"小飞鸽"牌电动车从气球a开始到气球b依次给每个气球涂一 ...
- hdu 1556:Color the ball(第二类树状数组 —— 区间更新,点求和)
Color the ball Time Limit: 9000/3000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)To ...
- hdu 1556:Color the ball(线段树,区间更新,经典题)
Color the ball Time Limit: 9000/3000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)To ...
- HDU.1556 Color the ball (线段树 区间更新 单点查询)
HDU.1556 Color the ball (线段树 区间更新 单点查询) 题意分析 注意一下pushdown 和 pushup 模板类的题还真不能自己套啊,手写一遍才行 代码总览 #includ ...
- HDU 5862 Counting Intersections(离散化+树状数组)
HDU 5862 Counting Intersections(离散化+树状数组) 题目链接http://acm.split.hdu.edu.cn/showproblem.php?pid=5862 D ...
- hdu 5517 Triple(二维树状数组)
Triple Time Limit: 12000/6000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others)Total Sub ...
随机推荐
- mac下安装mysqlcient 报错
一.我在mac下pip3安装mysqlclient 报错: pip3 install mysqlclient Collecting mysqlclient Using cached mysqlclie ...
- Mongodb 与 Mongoose 的使用
目标 无明确目标 知识点 了解 mongodb (http://www.mongodb.org/ ) 学习 mongoose 的使用 (http://mongoosejs.com/ ) 课程内容 mo ...
- javascript淡入淡出效果的实现思路
这个思路是最近写XScroll.js类的时候想明白的.平常我们说的淡入淡出效果,一般分成两部分,一半是淡入,另一半就是淡出了.不过经过分析,我觉得其实只需要一半就行了如题,只有思路,没有代码. 这个思 ...
- linux下使用shell脚本自动化部署项目
在Java开发项目时经常要把正在开发的项目发布到测试服务器中去测试,一般的话是要把项目先打成war包,然后把war包发布到服务器中,关闭服务器, 最后重新启动服务器,虽然这过程不是很繁琐,但如果是多个 ...
- sparkSQL1.1入门之四:深入了解sparkSQL执行计划
前面两章花了不少篇幅介绍了SparkSQL的执行过程,非常多读者还是认为当中的概念非常抽象.比方Unresolved LogicPlan.LogicPlan.PhysicalPlan是长得什么样子,没 ...
- <实战> 通过分析Heap Dump 来了解 Memory Leak ,Retained Heap,Shallow Heap
引入: 最近在和别的团队的技术人员聊天,发现很多人对于堆的基本知识都不太熟悉,所以他们不能很好的检测出memory leak问题,这里就用一个专题来讲解如何通过分析heap dump文件来查找memo ...
- MySql 触发器同步备份数据表记录
添加记录到新记录表 DELIMITER $$ USE `DB_Test`$$ CREATE /*!50017 DEFINER = 'root'@'%' */ TRIGGER `InsertOPM_Al ...
- 《SPARK/TACHYON:基于内存的分布式存储系统》-史鸣飞(英特尔亚太研发有限公司大数据软件部工程师)
史鸣飞:大家好,我是叫史鸣飞,来自英特尔公司,接下来我向大家介绍一下Tachyon.我事先想了解一下大家有没有听说过Tachyon,或者是对Tachyon有没有一些了解?对Spark呢? 首先做一个介 ...
- Java – Convert IP address to Decimal Number
In this tutorial, we show you how to convert an IP address to its decimal equivalent in Java, and vi ...
- Date函数基础知识整理
Date类型:1.Date.parse()接收一个表示日期的字符串参数,然后再根据这个字符串返回响应的日期的毫秒数:如:创建一个日期: <script> // var someDate=n ...