zoukankan      html  css  js  c++  java
  • (困难) CF 484E Sign on Fence,整体二分+线段树

    Bizon the Champion has recently finished painting his wood fence. The fence consists of a sequence of n panels of 1 meter width and of arbitrary height. The i-th panel's height is hi meters. The adjacent planks follow without a gap between them.

    After Bizon painted the fence he decided to put a "for sale" sign on it. The sign will be drawn on a rectangular piece of paper and placed on the fence so that the sides of the sign are parallel to the fence panels and are also aligned with the edges of some panels. Bizon the Champion introduced the following constraints for the sign position:

    1. The width of the sign should be exactly w meters.
    2. The sign must fit into the segment of the fence from the l-th to the r-th panels, inclusive (also, it can't exceed the fence's bound in vertical direction).

    The sign will be really pretty, So Bizon the Champion wants the sign's height to be as large as possible.

    You are given the description of the fence and several queries for placing sign. For each query print the maximum possible height of the sign that can be placed on the corresponding segment of the fence with the given fixed width of the sign.

      纪念人生第一道Div 1的E题,终于搞定了。

      题目就是N个值的M次询问,然后对于一个询问来说就是二分答案。对于M次询问的话,想到了整体二分。然后数据结构的话就是区间合并的线段树,比较经典的问题。

      代码如下:

    // ━━━━━━神兽出没━━━━━━
    //      ┏┓       ┏┓
    //     ┏┛┻━━━━━━━┛┻┓
    //     ┃           ┃
    //     ┃     ━     ┃
    //     ████━████   ┃
    //     ┃           ┃
    //     ┃    ┻      ┃
    //     ┃           ┃
    //     ┗━┓       ┏━┛
    //       ┃       ┃
    //       ┃       ┃
    //       ┃       ┗━━━┓
    //       ┃           ┣┓
    //       ┃           ┏┛
    //       ┗┓┓┏━━━━━┳┓┏┛
    //        ┃┫┫     ┃┫┫
    //        ┗┻┛     ┗┻┛
    //
    // ━━━━━━感觉萌萌哒━━━━━━
    
    // Author        : WhyWhy
    // Created Time  : 2016年01月22日 星期五 17时06分36秒
    // File Name     : L_1.cpp
    
    #include <stdio.h>
    #include <string.h>
    #include <iostream>
    #include <algorithm>
    #include <vector>
    #include <queue>
    #include <set>
    #include <map>
    #include <string>
    #include <math.h>
    #include <stdlib.h>
    #include <time.h>
    
    using namespace std;
    
    const int MaxN=100005<<1;
    
    struct OPE { int l,r,w,id; } ope[MaxN],to1[MaxN],to2[MaxN];
    
    int N,M;
    int ans[MaxN];
    
    ///////////////////////////////
    
    #define lc (po<<1)
    #define rc ((po<<1)|1)
    #define lson L,M,lc
    #define rson M+1,R,rc
    
    struct ANS { 
        int num,lnum,rnum; 
        ANS(int a=0,int b=0,int c=0):num(a),lnum(b),rnum(c) {}
    };
    
    ANS BIT[MaxN<<2];
    
    ANS merge(int len1,int len2,ANS a1,ANS a2) {
        ANS ret;
        ret.num=max(max(a1.rnum+a2.lnum,a1.num),a2.num);
        ret.lnum=(len1==a1.num) ? len1+a2.lnum : a1.lnum;
        ret.rnum=(len2==a2.num) ? len2+a1.rnum : a2.rnum;
        return ret;
    }
    
    inline void pushUP(int len1,int len2,int po) {
        BIT[po]=merge(len1,len2,BIT[lc],BIT[rc]);
    }
    
    void update(int up,int ut,int L,int R,int po) {
        if(L==R) {
            BIT[po].num=BIT[po].lnum=BIT[po].rnum=ut;
            return;
        }
    
        int M=(L+R)>>1;
        if(up<=M) update(up,ut,lson);
        else update(up,ut,rson);
    
        pushUP(M-L+1,R-M,po);
    }
    
    ANS query(int ql,int qr,int L,int R,int po) {
        if(ql<=L && qr>=R) return BIT[po];
    
        int M=(L+R)>>1;
        if(ql>M) return query(ql,qr,rson);
        if(qr<=M) return query(ql,qr,lson);
    
        return merge(M-ql+1,qr-M,query(ql,M,lson),query(M+1,qr,rson));        // !!!
    }
    
    ///////////////////////////////
    
    int tmp[MaxN];
    
    void getans(int ql,int qr,int L,int R) {
        if(ql>qr) return;
        if(L==R) {
            for(int i=ql;i<=qr;++i) ans[ope[i].id]=L;
            return;
        }
    
        int M=(L+R+1)>>1;
        for(int i=ql;i<=qr;++i)
            if(!ope[i].id && ope[i].w>=M)
                update(ope[i].l,1,1,N,1),tmp[i]=2;
            else if(ope[i].id && ope[i].w<=query(ope[i].l,ope[i].r,1,N,1).num)
                tmp[i]=1;
            else tmp[i]=0;
    
        int cou1=0,cou2=0;
        for(int i=ql;i<=qr;++i)
            if(tmp[i]) {
                to2[cou2++]=ope[i];
                if(tmp[i]==2) update(ope[i].l,0,1,N,1);
            }
            else to1[cou1++]=ope[i];
    
        int t=ql;
        for(int i=0;i<cou1;++i) ope[t++]=to1[i];
        for(int i=0;i<cou2;++i) ope[t++]=to2[i];
    
        getans(ql+cou1,qr,M,R);            // !!! 大的那些要被用到,在小的里面。
    
        for(int i=ql+cou1;i<=qr;++i)
            if(!ope[i].id)
                update(ope[i].l,1,1,N,1);
    
        getans(ql,ql+cou1-1,L,M-1);
    }
    
    ///////////////////////////////
    
    int main() {
        //freopen("in.txt","r",stdin);
        //freopen("out.txt","w",stdout);
    
        int t,cou=0;
        scanf("%d",&N);
        for(int i=1;i<=N;++i) {
            scanf("%d",&t);
            ope[++cou].w=t;
            ope[cou].l=i;
            ope[cou].id=0;
        }
        scanf("%d",&M);
        for(int i=1;i<=M;++i) {
            ope[++cou].id=i;
            scanf("%d %d %d",&ope[cou].l,&ope[cou].r,&ope[cou].w);
        }
        getans(1,cou,1,1000000000);
        for(int i=1;i<=M;++i) printf("%d
    ",ans[i]);
        
        return 0;
    }
    View Code
  • 相关阅读:
    进阶 | 手把手教你模拟键盘和鼠标操作ActionChains
    做web自动化时,定位元素常用方法有哪些?
    C# 自定义控件无法查看视图设计:文件中的类都不能进行设计,因此未能为该文件显示设计器
    Windows Server时间服务器配置方法
    MySQL 8.0主从(MasterSlave)配置
    VMware VSphere Client克隆虚拟机
    VMware vSphere Client给虚拟机增加硬盘
    nginx负载+mysql8.0双主实现
    Java
    关于awvs和nessus的api的说明
  • 原文地址:https://www.cnblogs.com/whywhy/p/5152258.html
Copyright © 2011-2022 走看看