码迷,mamicode.com
首页 > 其他好文 > 详细

bzoj4237: 稻草人 cdq分治 单调栈

时间:2018-09-27 22:06:47      阅读:130      评论:0      收藏:0      [点我收藏+]

标签:\n   while   pre   com   ref   单调栈   void   答案   题解   

目录



题目链接

bzoj4237: 稻草人

题解

暴力统计是n^2的
考虑统计一段区间对另一端的贡献
对于y值cdq分治,降调一维
对于当前两个分治区间统计上面那部分对下面那部分的贡献
对当前两区间x排序后,对上部分维护单增单调栈,得到距离当前点最近的比她低的点p
对于下面的区间维护一个上凸壳 ,直接在凸壳上二分p统计答案

代码

#include<set> 
#include<cstdio> 
#include<cstring> 
#include<algorithm> 
#define gc getchar()
#define pc putchar 
#define LL long long 
inline int read() { 
    int x = 0,f = 1; 
    char c = gc; 
    while(c < '0' || c > '9') c = gc; 
    while(c <= '9' && c >= '0') x = x * 10 + c - '0',c = gc; 
    return x * f;  
} 
void print(LL x) { 
    if(x < 0) { 
        pc('-'); 
        x = -x; 
    } 
    if(x >= 10) print(x / 10); 
    pc(x % 10 + '0'); 
} 
const int maxn = 200007; 
struct Point {
    int x,y; 
} po[maxn]; 
int n; 
bool cmpx(Point a,Point b) { return a.x < b.x;  } 
bool cmpy(Point a,Point b) { return a.y < b.y;  } 
int tp,tl; 
int sk[maxn],sk2[maxn]; 
LL  ans = 0; 
void solve(int l = 1,int r = n) {
    if(l == r) return ; 
    int mid = l + r >> 1; 
    std::sort(po + l,po + r + 1,cmpy); 
    std::sort(po + l,po + mid + 1,cmpx); //down
    std::sort(po + mid + 1,po + r + 1,cmpx); //up 
    tp = tl = 0; 
    int p = l,L,R,to,miid,lim;  
    for(int i = mid + 1;i <= r;++ i) { 
        while(tp && po[sk[tp]].y >= po[i].y) tp --; 
        sk[++ tp] = i; 
        
        for(;p <= mid && po[p].x < po[i].x;++ p) { 
            while(tl && po[sk2[tl]].y <= po[p].y) tl --; 
            sk2[++ tl] = p;  
        } 
        
        L = 1,R = tl;to = - 1;lim = po[sk[tp - 1]].x; 
        while(L <= R) { 
            miid = L + R >> 1; 
            if(po[sk2[miid]].x > lim) to = miid,R = miid - 1; 
            else L = miid + 1; 
        }  
        if(to != -1) ans += 1ll * tl - 1ll * to + 1; 
    } 
    solve(l,mid); solve(mid + 1,r); 
} 
int main() { 
    n = read(); 
    for(int i = 1;i <= n;++ i) { 
        po[i].x = read(),po[i].y = read(); 
    } 
    po[0].x = po[0].y = -1; 
    solve(); 
    print(ans); 
    pc('\n'); 
} 

bzoj4237: 稻草人 cdq分治 单调栈

标签:\n   while   pre   com   ref   单调栈   void   答案   题解   

原文地址:https://www.cnblogs.com/sssy/p/9715479.html

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