码迷,mamicode.com
首页 > Windows程序 > 详细

[poj 2482] Stars in Your Window

时间:2017-10-29 15:16:28      阅读:301      评论:0      收藏:0      [点我收藏+]

标签:扫描   color   rtb   sla   fine   ges   lock   string   already   

[poj 2482] Stars in Your Window

Time Limit: 1000MS  Memory Limit: 65536K

Description

Fleeting time does not blur my memory of you. Can it really be 4 years since I first saw you? I still remember, vividly, on the beautiful Zhuhai Campus, 4 years ago, from the moment I saw you smile, as you were walking out of the classroom and turned your head back, with the soft sunset glow shining on your rosy cheek, I knew, I knew that I was already drunk on you. Then, after several months’ observation and prying, your grace and your wisdom, your attitude to life and your aspiration for future were all strongly impressed on my memory. You were the glamorous and sunny girl whom I always dream of to share the rest of my life with. Alas, actually you were far beyond my wildest dreams and I had no idea about how to bridge that gulf between you and me. So I schemed nothing but to wait, to wait for an appropriate opportunity. Till now — the arrival of graduation, I realize I am such an idiot that one should create the opportunity and seize it instead of just waiting. 

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 several test cases in the input. The first line of each case contains 3 integers: n, W, H, indicating the number of stars, the horizontal length and the vertical height of the rectangle-shaped window. Then n lines follow, with 3 integers each: x, y, c, telling the location (x, y) and the brightness of each star. No two stars are on the same point. 

There are at least 1 and at most 10000 stars in the sky. 1<=W,H<=1000000, 0<=x,y<2^31. 

Output

For each test case, output the maximum brightness in a single line.

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

POJ Contest,Author:kinfkong@ZSU

 

这封情书。。。写的可真有水平啊。。值得借鉴qwq

好吧,这其实就是非常经典的扫描线题。

这种题目,我们先需要转换一下。

题目中用矩形框点,可以等价变换为求以每个点为角(任意一个)的矩形的最大交。

这样,我们相当于把原问题变成了求出矩形面积并,只是另类一点而已(还简单了不少)。

那么,我们可以用一个差分的思想,将一个点(x,y,z)的信息先转为一个矩形(x,y,W,H,z),再变成两条线段。

这两条线段的信息分别为(y,x,x+W,z)和(y+H,x,x+W,-z)。

其中值得注意的是,题目中说了,不包含边界上面的点,所以上方的两条线段实际上只包含左端点而不包含右端点。

然后这就变成了加权线段覆盖问题。完全就是线段树的范围。

但是我们还要先按x坐标离散一下,再建立,更新线段树。

当然还要注意,我们更新线段树要有顺序,比如从上往下或从下往上都可以。

但还要注意的是,只有当你把同一高度的线段都处理完了,才能进行查询,更新答案,否则可能会导致负标记还没删完,答案就更新了。

code:

技术分享
 1 %:pragma GCC optimize(2)
 2 #include<cstdio>
 3 #include<cstring>
 4 #include<algorithm>
 5 #define LL long long
 6 using namespace std;
 7 const int N=20005;
 8 int n,cnt,ans; LL a[N],W,H;
 9 class node {
10     private:
11         int v,t; node *l,*r;
12     public:
13         #define m ((l)+(r)>>1)
14         node() {v=t=0,l=r=NULL;}
15         inline void pushup(node* &cu) {
16             cu->v=0;
17             if (cu->l!=0) cu->v=max(cu->v,cu->l->v);
18             if (cu->r!=0) cu->v=max(cu->v,cu->r->v);
19         }
20         inline void pushdown(node* &cu) {
21             if (cu->l!=0) cu->l->v+=cu->t,cu->l->t+=cu->t;
22             if (cu->r!=0) cu->r->v+=cu->t,cu->r->t+=cu->t;
23             cu->t=0;
24         }
25         inline void setup(node* &cu,int l,int r) {
26             cu=new node;
27             if (l==r) {cu->v=cu->t=0; return;}
28             setup(cu->l,l,m),setup(cu->r,m+1,r);
29             pushup(cu);
30         }
31         inline void update(node* &cu,int l,int r,int aiml,int aimr,int v) {
32             if (aiml>r||aimr<l) return;
33             if (l>=aiml&&r<=aimr) {cu->v+=v; cu->t+=v; return;}
34             pushdown(cu);
35             if (aimr<=m) update(cu->l,l,m,aiml,aimr,v); else
36             if (aiml>m) update(cu->r,m+1,r,aiml,aimr,v); else
37             update(cu->l,l,m,aiml,aimr,v),update(cu->r,m+1,r,aiml,aimr,v);
38             pushup(cu);
39         }
40         inline int answer(node* &cu) {return cu->v;}
41 }t,*root;
42 struct line {
43     LL x,l,r; int z;
44     line () {}
45     line (LL _x,LL _l,LL _r,int _z):x(_x),l(_l),r(_r),z(_z) {}
46 }s[N];
47 inline bool cmp(const line &u,const line &v) {return u.x<v.x;}
48 inline int read() {
49     int x=0; char ch=getchar();
50     while (ch<0||ch>9) ch=getchar();
51     while (ch>=0&&ch<=9) x=x*10+ch-0,ch=getchar();
52     return x;
53 }
54 inline void init() {ans=0,root=0;}
55 int main() {
56     while (scanf("%d%lld%lld",&n,&W,&H)!=EOF) {
57         init();
58         for (int i=1; i<=n; i++) {
59             LL x=read(),y=read(); int z=read();
60             s[(i-1)<<1|1]=line(y,x,x+W,z);
61             s[i<<1]=line(y+H,x,x+W,-z);
62             a[(i-1)<<1|1]=x,a[i<<1]=x+W;
63         }
64         sort(a+1,a+1+n+n);
65         cnt=unique(a+1,a+1+n+n)-a-1;
66         sort(s+1,s+1+n+n,cmp);
67         t.setup(root,1,cnt);
68         for (int i=1,l,r; i<=n<<1; i++) {
69             if (s[i].x>s[i-1].x&&i>1) ans=max(ans,t.answer(root));
70             l=lower_bound(a+1,a+cnt+1,s[i].l)-a;
71             r=lower_bound(a+1,a+cnt+1,s[i].r)-a-1;
72             t.update(root,1,cnt,l,r,s[i].z);
73         }
74         printf("%d\n",ans);
75     }
76     return 0;
77 }
View Code

[poj 2482] Stars in Your Window

标签:扫描   color   rtb   sla   fine   ges   lock   string   already   

原文地址:http://www.cnblogs.com/whc200305/p/7750047.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!