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 ...
随机推荐
- BZOJ4999: This Problem Is Too Simple!树链剖分+动态开点线段树
题目大意:将某个节点的颜色变为x,查询i,j路径上多少个颜色为x的点... 其实最开始一看就是主席树+树状数组+DFS序...但是过不去...MLE+TLE BY FCWWW 其实树剖裸的一批...只 ...
- vue-cli,build 后,报错的解决办法
报错如下图: 或: 解决办法:config / index.js 中,找到 build { assetsPublicPath: '/' },将其设置为:assetsPublicPath: './ ' ...
- WPF编程 ,TextBlock 显示百分数值的一种简单方法。
原文:WPF编程 ,TextBlock 显示百分数值的一种简单方法. 版权声明:我不生产代码,我只是代码的搬运工. https://blog.csdn.net/qq_43307934/article/ ...
- VS编程,编辑WPF过程中,点击设计器中界面某一控件,在XAML中高亮突出显示相应的控件代码的设置方法。
原文:VS编程,编辑WPF过程中,点击设计器中界面某一控件,在XAML中高亮突出显示相应的控件代码的设置方法. 版权声明:我不生产代码,我只是代码的搬运工. https://blog.csdn.net ...
- Nuget包CommonServiceLocator从1.0.3升级到2.0.4时MvvmLight的ViewModelLocator初始化SimpleIoc.Default格式不匹配问题
原文:Nuget包CommonServiceLocator从1.0.3升级到2.0.4时MvvmLight的ViewModelLocator初始化SimpleIoc.Default格式不匹配问题 把旧 ...
- Centos7下不删除python2.x的情况下安装python3.x
Linux下默认系统自带python2.X的版本,这个版本被系统很多程序所依赖,所以不建议删除,如果使用最新的Python3那么我们知道编译安装源码包和系统默认包之间是没有任何影响的,所以可以安装py ...
- Spring MVC统一异常处理
实际上Spring MVC处理异常有3种方式: (1)一种是在Controller类内部使用@ExceptionHandler使用注解实现异常处理: 可以在Controller内部实现更个性化点异常处 ...
- springboot @PropertySource
@ConfigurationProperties(prefix="person") 默认加载全局配置文件 application.properties或application.ym ...
- 【ORACLE】oracle11g dg搭建
--------------------------------每个节点和DG------------------------------------------------------------- ...
- web项目_学生证管理系统
项目简述: 基于java web实现学生卡管理系统,用户包括学生和学生处,分别实现以下功能. 学生: 1.对本人登录密码的修改 2.申请补办学生卡 3.查看学生卡补办状态 学生处: 1.对学生信息的管 ...