其他分享
首页 > 其他分享> > 【线段树】hdu 2795 Billboard

【线段树】hdu 2795 Billboard

作者:互联网

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2795

 

题目大意:一个h*w的公告牌,要在其上贴公告。

 

这个题目的线段树的利用方式很巧妙,把高度1-h建立线段树,维护区间内的最大剩余宽度

对于每次的一个新公告,先于根节点也就是1-h区间比较,如果不够,输出-1

如果够就和左子树比较 ......

这个思路就很像一个二分(?)

 

代码

 

#include<bits/stdc++.h>
using namespace std;
const int maxn=2e5+5;
int h,w,n;
struct edge
{
    int l,r,maxx;
}tr[maxn<<2];
void pushup(int now)
{
    tr[now].maxx=max(tr[now<<1].maxx,tr[now<<1|1].maxx);
}
void build(int now,int l,int r)
{
    tr[now].l=l; tr[now].r=r;
    if(l==r)
    {
        tr[now].maxx=w;
        return;
    }
    int mid=l+r>>1;
    build(now<<1,l,mid);
    build(now<<1|1,mid+1,r);
    pushup(now);
}
int query(int now,int v)
{
    if(tr[now].maxx<v) return -1;
    if(tr[now].l==tr[now].r)
    {
        tr[now].maxx-=v;
        return tr[now].l;    
    }
    int ans;
    if(tr[now<<1].maxx>=v) ans=query(now<<1,v);
    else ans=query(now<<1|1,v);
    pushup(now);
    return ans;
}
int main()
{
    freopen("a.in","r",stdin);
    freopen("a.out","w",stdout);
    int x;
    while(scanf("%d%d%d",&h,&w,&n)!=EOF)
    {
        h=min(h,n);
        build(1,1,h);
        for(int i=1;i<=n;i++)
        {
            scanf("%d",&x);
            int pos=query(1,x);
            printf("%d\n",pos);
        }
    }
    return 0;    
} 

 

标签:hdu,题目,int,线段,maxn,Billboard,now,2795
来源: https://www.cnblogs.com/andylnx/p/14059223.html