zoukankan      html  css  js  c++  java
  • POJ 2482 扫描线(面积覆盖最大次数)

    Stars in Your Window
    Time Limit: 1000MS   Memory Limit: 65536K
    Total Submissions: 10806   Accepted: 2980

    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
     
     
    题目意思:
    给n个点的坐标和该点的价值,然后给一个n*m的矩形框,求矩形框住点的最大的总价值。
     
    思路:
    好像2014上海邀请赛出过类似的题目,那个是框住点最多的数目。把这道题价值转换为点的数目即在坐标(x,y)处有val个单位价值点(val为原题中点的价值),那么题目就转换成2014上海邀请赛的那道题了。
    那么怎么求矩形框住点最大的数目呢?
    以每个点为左下角创建一个矩形(和给出的矩形框形状大小一致),那么重叠的面积最多的次数即为答案(证明很简单)。
    怎么求重叠面积次数呢?
    扫描线变形 = = 每个矩形下边的值为val,上边的值为-val,扫描线扫一遍即得出答案。
     
    代码:
      1 #include <cstdio>
      2 #include <cstring>
      3 #include <algorithm>
      4 #include <iostream>
      5 #include <vector>
      6 #include <queue>
      7 #include <cmath>
      8 #include <set>
      9 using namespace std;
     10 
     11 #define N 10005
     12 #define ll root<<1
     13 #define rr root<<1|1
     14 #define mid (a[root].l+a[root].r)/2
     15 
     16 __int64 max(__int64 x,__int64 y){return x>y?x:y;}
     17 __int64 min(__int64 x,__int64 y){return x<y?x:y;}
     18 __int64 abs(__int64 x,__int64 y){return x<0?-x:x;}
     19 
     20 
     21 struct node{
     22     __int64 l, r, val, maxh;
     23 }a[N*8];
     24 
     25 struct Line{
     26     __int64 x1, x2, y, val;
     27     Line(){}
     28     Line(__int64 a,__int64 b,__int64 c,__int64 d){
     29         x1=a;
     30         x2=b;
     31         y=c;
     32         val=d;
     33     }
     34 }line[N*2];
     35 
     36 bool cmp(Line a,Line b){
     37     if(a.y==b.y) return a.val>b.val;
     38     return a.y<b.y;
     39 }
     40 
     41 struct Po__int64{
     42     __int64 x, y, val;
     43 }p[N];
     44 
     45 __int64 n, w, h;
     46 __int64 nx;
     47 __int64 xx[N*2];
     48 
     49 __int64 b_s(__int64 key){
     50     __int64 l=0, r=nx-1;
     51     while(l<=r){
     52         __int64 mm=(l+r)/2;
     53         if(xx[mm]==key) return mm;
     54         else if(xx[mm]>key) r=mm-1;
     55         else if(xx[mm]<key) l=mm+1;
     56     }
     57 }
     58 
     59 void build(__int64 l,__int64 r,__int64 root){
     60     a[root].l=l;
     61     a[root].r=r;
     62     a[root].val=a[root].maxh=0;
     63     if(l==r) return;
     64     build(l,mid,ll);
     65     build(mid+1,r,rr);
     66 }
     67 
     68 void up(__int64 root){
     69     if(a[root].l==a[root].r) a[root].maxh=a[root].val;
     70     else a[root].maxh=a[root].val+max(a[ll].maxh,a[rr].maxh);
     71 }
     72 
     73 void update(__int64 l,__int64 r,__int64 val,__int64 root){
     74     if(l>r) return;
     75     if(a[root].l==l&&a[root].r==r){
     76         a[root].val+=val;
     77         up(root);
     78         return;
     79     }
     80     if(r<=a[ll].r) update(l,r,val,ll);
     81     else if(l>=a[rr].l) update(l,r,val,rr);
     82     else{
     83         update(l,mid,val,ll);
     84         update(mid+1,r,val,rr);
     85     }
     86     up(root);
     87 }
     88 
     89 int main()
     90 {
     91     __int64 i, j, k;
     92     while(scanf("%I64d %I64d %I64d",&n,&w,&h)==3){
     93         nx=k=0;
     94         for(i=0;i<n;i++){
     95             scanf("%I64d %I64d %I64d",&p[i].x,&p[i].y,&p[i].val);
     96             line[k++]=Line(p[i].x,p[i].x+w-1,p[i].y,p[i].val);
     97             line[k++]=Line(p[i].x,p[i].x+w-1,p[i].y+h-1,-p[i].val);
     98             xx[nx++]=p[i].x;
     99             xx[nx++]=p[i].x+w-1;
    100         }
    101         sort(xx,xx+nx);
    102         nx=unique(xx,xx+nx)-xx;
    103         build(0,nx,1);
    104         __int64 ans=0;
    105         sort(line,line+k,cmp);
    106         for(i=0;i<k-1;i++){
    107             update(b_s(line[i].x1),b_s(line[i].x2),line[i].val,1);
    108             ans=max(ans,a[1].maxh);
    109         }
    110         printf("%I64d
    ",ans);
    111     }
    112     return 0;
    113 }
  • 相关阅读:
    delphi中httpencode使用注意事项
    如何消去delphi Stringgrid重绘时产生重影
    delphi在64位系统下写注册表注意事项
    通过注册表修改IE的Internet选项
    TList TObjectList的区别和使用
    Delphi7如何实现让Tedit显示文字垂直居中(上下居中)
    delphi 在代码中 添加 TO-DO 并且 管理
    python爬虫学习笔记(二)-工具的使用
    python爬虫学习笔记(一)-爬虫介绍
    永恒之蓝漏洞的利用测试
  • 原文地址:https://www.cnblogs.com/qq1012662902/p/4628402.html
Copyright © 2011-2022 走看看