poj 2482 Stars in Your Window + 51Nod1208(扫描线+离散化+线段树)
| Time Limit: 1000MS | Memory Limit: 65536K | |
| Total Submissions: 13196 | Accepted: 3609 |
Description
These days, having parted with friends, roommates and classmates one after another, I still cannot believe the fact that after waving hands, these familiar faces will soon vanish from our life and become no more than a memory. I will move out from school tomorrow. And you are planning to fly far far away, to pursue your future and fulfill your dreams. Perhaps we will not meet each other any more if without fate and luck. So tonight, I was wandering around your dormitory building hoping to meet you there by chance. But contradictorily, your appearance must quicken my heartbeat and my clumsy tongue might be not able to belch out a word. I cannot remember how many times I have passed your dormitory building both in Zhuhai and Guangzhou, and each time aspired to see you appear in the balcony or your silhouette that cast on the window. I cannot remember how many times this idea comes to my mind: call her out to have dinner or at least a conversation. But each time, thinking of your excellence and my commonness, the predominance of timidity over courage drove me leave silently.
Graduation, means the end of life in university, the end of these glorious, romantic years. Your lovely smile which is my original incentive to work hard and this unrequited love will be both sealed as a memory in the deep of my heart and my mind. Graduation, also means a start of new life, a footprint on the way to bright prospect. I truly hope you will be happy everyday abroad and everything goes well. Meanwhile, I will try to get out from puerility and become more sophisticated. To pursue my own love and happiness here in reality will be my ideal I never desert.
Farewell, my princess!
If someday, somewhere, we have a chance to gather, even as gray-haired man and woman, at that time, I hope we can be good friends to share this memory proudly to relight the youthful and joyful emotions. If this chance never comes, I wish I were the stars in the sky and twinkling in your window, to bless you far away, as friends, to accompany you every night, sharing the sweet dreams or going through the nightmares together. 
Here comes the problem: Assume the sky is a flat plane. All the stars lie on it with a location (x, y). for each star, there is a grade ranging from 1 to 100, representing its brightness, where 100 is the brightest and 1 is the weakest. The window is a rectangle whose edges are parallel to the x-axis or y-axis. Your task is to tell where I should put the window in order to maximize the sum of the brightness of the stars within the window. Note, the stars which are right on the edge of the window does not count. The window can be translated but rotation is not allowed.
Input
There are at least 1 and at most 10000 stars in the sky. 1<=W,H<=1000000, 0<=x,y<2^31.
Output
Sample Input
3 5 4
1 2 3
2 3 2
6 3 1
3 5 4
1 2 3
2 3 2
5 3 1
Sample Output
5
6
Source
思路:
将一个点看成一个矩阵的左下角,然后扫描线+线段树维护最多存了多少条下边就可以了。
实现代码:
#include<iostream>
#include<cmath>
#include<algorithm>
#include<cstring>
using namespace std;
#define ll __int64
#define lson l,m,rt<<1
#define rson m+1,r,rt<<1|1
#define mid ll m = (l + r) >> 1
const ll M = 1e5+;
ll sum[M<<],lazy[M<<],x[M];
struct seg{
ll l,r,h,s;
seg(){}
seg(ll a,ll b,ll c,ll d):l(a),r(b),h(c),s(d){}
bool operator < (const seg &cmp) const {
if(h == cmp.h) return s < cmp.s; //因为边界上的点不算,所以优先计算上边。
return h < cmp.h;
}
}t[M]; void pushup(ll rt){
sum[rt] = max(sum[rt<<] ,sum[rt<<|])+lazy[rt];
} void update(ll L,ll R,ll c,ll l,ll r,ll rt){
if(L <= l&&R >= r){
sum[rt] += c;
lazy[rt] += c;
return ;
}
mid;
if(L <= m) update(L,R,c,lson);
if(R > m) update(L,R,c,rson);
pushup(rt);
} int main()
{
ios::sync_with_stdio();
cin.tie(); cout.tie();
ll n,w,h,a,b,c;
while(cin>>n>>w>>h){
ll len = ;
while(n--){
cin>>a>>b>>c;
x[len] = a;
t[len++] = seg(a,a+w,b,c);
x[len] = a+w;
t[len++] = seg(a,a+w,b+h,-c);
}
sort(x,x+len);
sort(t,t+len);
ll k = unique(x,x+len) - x;
memset(sum,,sizeof(sum));
memset(lazy,,sizeof(lazy));
ll ans = ;
for(ll i = ;i < len;i ++){
ll l = lower_bound(x,x+k,t[i].l) - x; //左开右闭区间
ll r = lower_bound(x,x+k,t[i].r) - x-;
//cout<<l<<" "<<r<<endl;
if(l <= r) update(l,r,t[i].s,,k-,);
ans = max(ans,sum[]);
}
cout<<ans<<endl;
}
return ;
}
第1行:共3个数N, W, H,中间用空格分割,N为星星的数量,W为方框的宽度,H为方框的高度。(2 <= N <= 50000, 1 <= W, H <= 10^9)
第2 - N + 1行:每行3个数,X, Y, L,中间用空格分隔,分别表示星星的横坐标X,纵坐标Y,以及星星的亮度L。(1 <= X, Y <= 10^9,1 <= L <= 10000)
输出方框能够套住的最大亮度和S。
6 3 3
1 1 2
2 2 3
3 3 4
4 4 3
5 5 2
6 6 1
12
思路:
与上题基本一样,只是这道题包括边界上的星星,在上题的基础上修改下边界的判断就好了。
实现代码:
#include<iostream>
#include<cmath>
#include<algorithm>
#include<cstring>
using namespace std;
#define ll __int64
#define lson l,m,rt<<1
#define rson m+1,r,rt<<1|1
#define mid ll m = (l + r) >> 1
const ll M = 1e5+;
ll sum[M<<],lazy[M<<],x[M];
struct seg{
ll l,r,h,s;
seg(){}
seg(ll a,ll b,ll c,ll d):l(a),r(b),h(c),s(d){}
bool operator < (const seg &cmp) const { //因为是边界上也算,所以碰到一些点上边和一些点下边重合的情况优先计算其他点的下边(为正的)再算上边(为负的)。
if(h == cmp.h) return s > cmp.s;
return h < cmp.h;
}
}t[M]; void pushup(ll rt){
sum[rt] = max(sum[rt<<] ,sum[rt<<|])+lazy[rt];
} void update(ll L,ll R,ll c,ll l,ll r,ll rt){
if(L <= l&&R >= r){
sum[rt] += c;
lazy[rt] += c;
return ;
}
mid;
if(L <= m) update(L,R,c,lson);
if(R > m) update(L,R,c,rson);
pushup(rt);
} int main()
{
ios::sync_with_stdio();
cin.tie(); cout.tie();
ll n,w,h,a,b,c;
while(cin>>n>>w>>h){
ll len = ;
while(n--){
cin>>a>>b>>c;
x[len] = a;
t[len++] = seg(a,a+w,b,c);
x[len] = a+w;
t[len++] = seg(a,a+w,b+h,-c);
}
sort(x,x+len);
sort(t,t+len);
ll k = unique(x,x+len) - x;
memset(sum,,sizeof(sum));
memset(lazy,,sizeof(lazy));
ll ans = ;
for(ll i = ;i < len;i ++){
ll l = lower_bound(x,x+k,t[i].l) - x; //左开右开区间
ll r = lower_bound(x,x+k,t[i].r) - x;
//cout<<l<<" "<<r<<endl;
if(l <= r) update(l,r,t[i].s,,k-,);
ans = max(ans,sum[]);
}
cout<<ans<<endl;
}
return ;
}
poj 2482 Stars in Your Window + 51Nod1208(扫描线+离散化+线段树)的更多相关文章
- POJ 2482 Stars in Your Window(扫描线+线段树)
[题目链接] http://poj.org/problem?id=2482 [题目大意] 给出一些点的二维坐标和权值,求用一个长H,宽W的矩形能框住的最大权值之和, 在矩形边缘的点不计算在内 [题解] ...
- poj 2482 Stars in Your Window(扫描线)
id=2482" target="_blank" style="">题目链接:poj 2482 Stars in Your Window 题目大 ...
- POJ 2482 Stars in Your Window(线段树)
POJ 2482 Stars in Your Window 题目链接 题意:给定一些星星,每一个星星都有一个亮度.如今要用w * h的矩形去框星星,问最大能框的亮度是多少 思路:转化为扫描线的问题,每 ...
- POJ 2482 Stars in Your Window 线段树扫描线
Stars in Your Window Description Fleeting time does not blur my memory of you. Can it really be 4 ...
- POJ 2482 Stars in Your Window (线段树区间合并+扫描线)
这题开始一直被矩形框束缚了,想法一直都是枚举线,但是这样枚举都需要O(n^2)...但是看了别人的思路,感觉这题思想真心很好(PS:开头好浪漫的描述啊,可惜并没有什么用) 题意就是在平面上给你一些星 ...
- (中等) POJ 2482 Stars in Your Window,静态二叉树。
Description Here comes the problem: Assume the sky is a flat plane. All the stars lie on it with a l ...
- POJ 2482 Stars in Your Window 离散化+扫描法 线段树应用
遇见poj上最浪漫的题目..题目里图片以上几百词为一篇模板级英文情书.这情感和细腻的文笔深深地打动了我..不会写情书的童鞋速度进来学习.传送门 题意:坐标系内有n个星星,每个星星都有一个亮度c (1& ...
- POJ 2482 Stars in Your Window
线段树+离散化+扫描线 AC之后,又认真读了一遍题目,好文章. #include<cstdio> #include<map> #include<algorithm> ...
- POJ 2482 Stars in Your Window (线段树+扫描线+区间最值,思路太妙了)
该题和 黑书 P102 采矿 类似 参考链接:http://blog.csdn.net/shiqi_614/article/details/7819232http://blog.csdn.net/ts ...
随机推荐
- 如何高效的通过BP算法来训练CNN
< Neural Networks Tricks of the Trade.2nd>这本书是收录了1998-2012年在NN上面的一些技巧.原理.算法性文章,对于初学者或者是正在学习NN的 ...
- 跟我学Android NDK开发(一)
Android NDK 开发跟其它开发一样,首先需要配置好开发环境,本文以 Ubuntu系统为例介绍如何进行 Android NDK 开发环境的配置. 1. 简介 什么是 Android NDK 呢? ...
- 使用MySQL命令行修改密码
格式:mysqladmin -u用户名 -p旧密码 password 新密码 1.给root加个密码ab12.首先在DOS下进入目录mysql\bin,然后键入以下命令 mysqladmin - ...
- 利用git将项目上传到github
本文主要介绍如果用git将项目上传到githup. 一.准备工作 (1)欲将项目上传到githup,先在githup上新建一个仓库.这里就不介绍. (2 ...
- WPF 简易进度条效果
最近做一个项目,看到以前同事写的进度条效果不错,所以,拿来简化了下,不炫,但是项目中还是够用的. 还是,先来看下调用以后的效果 1.因为ProgressbBar的Foreground显示不得不一样,所 ...
- AWK处理数组
转自ChinaUnix论坛,感谢作者整理. 在文本处理的工作中,awk的数组是必不可少的工具,在这里,同样以总结经验和教训的方式和大家分享下我的一些学习心得,如有错误的地方,请大家指正和补充. awk ...
- python3 的 round 函数的 练习
python3 的 round 函数感觉很别扭,其运算结果与习惯不相符.特记录下来: 代码 ''' python 3的 round 函数 是"四舍六入五成双"的 https://w ...
- Hadoop日记Day15---MapReduce新旧api的比较
我使用hadoop的是hadoop1.1.2,而很多公司也在使用hadoop0.2x版本,因此市面上的hadoop资料版本不一,为了扩充自己的知识面,MapReduce的新旧api进行了比较研究. h ...
- service手动实例化(new)导致类中的spring对象无法注入的问题解决
下面说的这个画横线的可能是错误的,因为我之前用controller继承父类的注解对象的时候成功了,所以可能这次的唯一原因就是 不该把本该从ioc容器中拿出的对象通过new的方式实例化,至于继承注解对象 ...
- 我是SPI,我让框架更加优雅了!
文章首发于[陈树义的博客],点击跳转到原文<我是 SPI,我让框架更加优雅了!> 自从上次小黑进入公司的架构组之后,小黑就承担起整个公司底层框架的开发工作.就在刚刚,小黑又接到一个任务:做 ...