Hdu5091BeamCannon (line segment tree scanning line)

Source: Internet
Author: User
Link: hdu5091BeamCannon: Given N vertices, there must be a W? H's rectangle, and asked how many points can be enclosed at most. Solution: The scanning line of a line segment, assuming a bit (x, y), then (x, y )~ A rectangle (x + W, y + H) can be enclosed at (x, y) points in the lower right corner of the frame. Therefore, N points are N rectangles, find the maximum number of times covered, scan line bare question. # Incl

Link: hdu 5091 Beam Cannon

Given N vertices, is there a W? H's rectangle, and asked how many points can be enclosed at most.

Solution: The scanning line of a line segment, assuming a bit (x, y), then (x, y )~ A rectangle (x + W, y + H) can be enclosed in the lower right corner of the frame (x, y)

Point, so N points are N rectangles. find the maximum number of times of coverage and scan the line bare question.

#include 
  
   #include 
   
    #include 
    
     #include using namespace std;const int maxn = 40005;const int bw = 20000;#define lson(x) ((x)<<1)#define rson(x) (((x)<<1)|1)int lc[maxn << 2], rc[maxn << 2], ad[maxn << 2], nd[maxn << 2];inline void pushup(int u) {    nd[u] = max(nd[lson(u)], + nd[rson(u)]) + ad[u];}inline void maintain(int u, int v) {    ad[u] += v;    nd[u] += v;}void build(int u, int l, int r) {    lc[u] = l;    rc[u] = r;    ad[u] = nd[u] = 0;    if (l == r)        return;    int mid = (l + r) >> 1;    build(lson(u), l, mid);    build(rson(u), mid + 1, r);    pushup(u);}void modify(int u, int l, int r, int v) {    if (l <= lc[u] && rc[u] <= r) {        maintain(u, v);        return;    }    int mid = (lc[u] + rc[u]) >> 1;    if (l <= mid)        modify(lson(u), l, r, v);    if (r > mid)        modify(rson(u), l, r, v);    pushup(u);}int query(int u, int l, int r) {    if (l <= lc[u] && rc[u] <= r)        return nd[u];    int mid = (lc[u] + rc[u]) >> 1, ret = 0;     if (l <= mid)        ret = max(ret, query(lson(u), l, r));    if (r > mid)        ret = max(ret, query(rson(u), l, r));    pushup(u);    return ret;}struct Seg {    int x, l, r, w;    Seg(int x = 0, int l = 0, int r = 0, int w = 0) {        this->x = x;        this->l = l;        this->r = r;        this->w = w;    }};vector
     
       G;inline bool cmp (const Seg& a, const Seg& b) {    if (a.x != b.x)        return a.x < b.x;    return a.w < b.w;}int N, W, H;void init () {    int x, y;    G.clear();    scanf("%d%d", &W, &H);    for (int i = 0; i < N; i++) {        scanf("%d%d", &x, &y);        G.push_back(Seg(x, y + bw, min(bw, y + H) + bw, 1));        G.push_back(Seg(x + W + 1, y + bw, min(bw, y + H) + bw, -1));    }    build(1, 0, bw * 2);    sort(G.begin(), G.end(), cmp);}int main () {    while (scanf("%d", &N) == 1 && N != -1) {        init();        int ans = 0;        for (int i = 0; i < G.size(); i++) {            modify(1, G[i].l, G[i].r, G[i].w);            ans = max(ans, nd[1]);        }        printf("%d\n", ans);    }    return 0;}
     
    
   
  

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.