HDU - 2795 Billboard

1.题面

http://acm.hdu.edu.cn/showproblem.php?pid=2795

2.题意

我觉得中文题不需要解释题面.

3.思路

将这块宣传板以h为边建线段树,对于每次的输入tmp,只要将最左端的大于tmp的值减tmp就好了,

因为没有注意到n可以等于1,所以错了一次.

没有注意到l和r是可以在查询的过程中传递下去的,浪费了很多空间.

4.代码

/*****************************************************************
    > File Name: Cpp_Acm.cpp
    > Author: Uncle_Sugar
    > Mail: uncle_sugar@qq.com
    > Created Time: 2016年05月12日 星期四 18时23分50秒
*****************************************************************/
# include <cstdio>
# include <cstring>
# include <cctype>
# include <cmath>
# include <cstdlib>
# include <climits>
# include <iostream>
# include <iomanip>
# include <set>
# include <map>
# include <vector>
# include <stack>
# include <queue>
# include <algorithm>
using namespace std;

const int debug = 1;
const int size  = 200000 + 10; 
const int INF = INT_MAX>>1;
typedef long long ll;

struct node{
	int	max;
	int l,r;
	node(){}
}segtree[4*size];
int h,w,n;
void build(int n, int l, int r){
	segtree[n].l = l;
	segtree[n].r = r;
	if (l==r)	segtree[n].max = w;
	else {
		int mid = (l+r)>>1;
		int lc = n<<1;
		int rc = n<<1|1;
		build(lc,l,mid);
		build(rc,mid+1,r);
		segtree[n].max = max(segtree[lc].max,segtree[rc].max);
	}
}
int query_set(int n,int k){
	if (segtree[n].l==segtree[n].r){
		segtree[n].max -= k;			
		return segtree[n].l;
	}
	int lc = n<<1;
	int rc = n<<1|1;
	int ret = -1;
	if (segtree[lc].max >= k){
		ret = query_set(lc,k);
	}else if (segtree[rc].max >= k){
		ret = query_set(rc,k);
	}
	segtree[n].max = max(segtree[lc].max,segtree[rc].max);
	return ret;
}

int main()
{
	std::ios::sync_with_stdio(false);cin.tie(0);
	int i,j,tmp;
	while (cin >> h >> w >> n){
		build(1,1,min(h,n));
		for (i=0;i<n;i++){
			cin >> tmp;
			cout << (segtree[1].max>=tmp?query_set(1,tmp):-1) << endl;		
		}
	}
	return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值