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 ;
}