HDU 2795.Billboard-完全版线段树(区间求最值的位置、区间染色、贴海报)

HDU2795.Billboard

这个题的意思就是在一块h*w的板子上贴公告,公告的规格为1*w,张贴的时候尽量往上,同一高度尽量靠左,求第n个公告贴的位置所在的行数,如果没有合适的位置贴则输出-1。

因为题意说尽量往上往左,所以线段树存区间的最大值,就是这段区间内的某行是有最大的空位长度,每输入一个长度,就查询子树就可以。

代码:

 #include<iostream>
#include<cstdio>
#include<cstring>
#include<cmath>
#include<algorithm>
#include<cstdlib>
#include<queue>
#include<stack>
using namespace std;
typedef long long ll;
const int maxn=*1e5+;
const int inf=0x3f3f3f3f;
#define lson l,m,rt<<1
#define rson m+1,r,rt<<1|1
int h,w,n;
int MAX[maxn<<];
void PushUp(int rt){
MAX[rt]=max(MAX[rt<<],MAX[rt<<|]);
}
void build(int l,int r,int rt){
MAX[rt]=w;
if(l==r)return ;
int m=(l+r)>>;
build(lson);
build(rson);
}
int query(int x,int l,int r,int rt){
if(l==r){
MAX[rt]-=x;
return l;
}
int m=(l+r)>>;
int ret=(MAX[rt<<]>=x)?query(x,lson):query(x,rson);
PushUp(rt);
return ret;
}
int main(){
while(~scanf("%d%d%d",&h,&w,&n)){
if(h>n) h=n;
build(,h,);
while(n--){
int x;
scanf("%d",&x);
if(MAX[]<x)printf("-1\n");
else printf("%d\n",query(x,,h,));
}
}
return ;
}
上一篇:C# DataTable复制数据,深度复制


下一篇:hihocoder 1323 - 回文字符串 - [hiho一下162周][区间dp]