hdu2795 线段树
//Accepted 6396 KB 3046 ms
//线段树
//由于n只有200000,我们可以知道,当h>200000时,大于200000的部分是没有用的
//所以我们可以用n来创建线段树
//我的思路是:
//维护一个已用区段的线段树
//用len表示当前已用的区段
//当需要贴一个宽度为wi的announcement时,先判断已用的区段能不能放下,如果不能这考虑len+1 (len+1<n && len+1<h)
//如果上述两种情况都不能放下,这放不下,output -1;
//test:
//3 6 3
//4
//3
//2
//answer:1 2 1
#include <cstdio>
#include <cstring>
#include <iostream>
#include <queue>
#include <cmath>
#include <algorithm>
using namespace std;
/**
* This is a documentation comment block
* 如果有一天你坚持不下去了,就想想你为什么走到这儿!
* @authr songt
*/
;
int max(int a,int b)
{
return a>b?a:b;
}
struct node
{
int l,r;
int tmax;
}f[imax_n*];
int n,width,height;
int w;
void build(int t,int l,int r)
{
f[t].l=l;
f[t].r=r;
f[t].tmax=width;
if (l==r)
{
return ;
}
;
build(*t,l,mid);
build(*t+,mid+,r);
}
int query(int t,int l,int r)
{
if (f[t].l==l && f[t].r==r)
{
return f[t].tmax;
}
;
*t,l,r);
else
{
*t+,l,r);
*t,l,mid),query(*t+,mid+,r));
}
}
void update(int t,int l,int c)
{
if (f[t].l==l && f[t].r==l)
{
f[t].tmax=f[t].tmax-c;
return ;
}
;
*t,l,c);
*t+,l,c);
f[t].tmax=max(f[*t].tmax,f[*t+].tmax);
}
int queryid(int t,int sw)
{
if (f[t].l==f[t].r && f[t].tmax>=sw)
{
return f[t].l;
}
*t].tmax>=sw) *t,sw);
*t+,sw);
}
void slove()
{
;
;i<n;i++)
{
scanf("%d",&w);
if (w>width)
{
printf("-1\n");
continue;
}
,,len);
if (temp_w>=w)
{
,w);
printf("%d\n",t);
update(,t,w);
}
else
{
if (len<height && len<n)
{
printf();
update(,len+,w);
len++;
}
else
{
printf("-1\n");
}
}
}
}
int main()
{
while (scanf("%d%d%d",&height,&width,&n)!=EOF)
{
build(,,n);
slove();
}
;
}
//Accepted 6396 KB 2250 ms
#include <cstdio>
#include <cstring>
#include <iostream>
#include <queue>
#include <cmath>
#include <algorithm>
using namespace std;
/**
* This is a documentation comment block
* 如果有一天你坚持不下去了,就想想你为什么走到这儿!
* @authr songt
*/
int max(int a,int b)
{
return a>b?a:b;
}
int min(int a,int b)
{
return a<b?a:b;
}
struct node
{
int l,r;
int tmax;
}f[*];
int n,w,h;
void build(int t,int l,int r)
{
f[t].l=l;
f[t].r=r;
f[t].tmax=w;
if (l==r) return ;
;
build(*t,l,mid);
build(*t+,mid+,r);
}
int query(int t,int c)
{
if (f[t].l==f[t].r && f[t].tmax>=c)
{
f[t].tmax=f[t].tmax-c;
return f[t].l;
}
;
;
*t].tmax>=c) res=query(*t,c);
else
*t+].tmax>=c) res=query(*t+,c);
f[t].tmax=max(f[*t].tmax,f[*t+].tmax);
return res;
}
void slove()
{
int x;
;i<=n;i++)
{
scanf("%d",&x);
].tmax>=x)
{
printf(,x));
}
else
{
printf("-1\n");
}
}
}
int main()
{
while (scanf("%d%d%d",&h,&w,&n)!=EOF)
{
build(,,min(h,n));
slove();
}
;
}
hdu2795 线段树的更多相关文章
- hdu2795 线段树 贴广告
Billboard Time Limit: 20000/8000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total ...
- hdu2795线段树
//=========================================== //segment tree //final version //by kevin_samuel(fenic ...
- hdu2795(线段树单点更新&区间最值)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2795 题意:有一个 h * w 的板子,要在上面贴 n 条 1 * x 的广告,在贴第 i 条广告时要 ...
- HDU2795线段树入门 简单查询和修改
http://acm.hdu.edu.cn/showproblem.php?pid=2795 #include<iostream> using namespace std; ; int h ...
- 线段树-hdu2795 Billboard(贴海报)
hdu2795 Billboard 题意:h*w的木板,放进一些1*L的物品,求每次放空间能容纳且最上边的位子 思路:每次找到最大值的位子,然后减去L 线段树功能:query:区间求最大值的位子(直接 ...
- HDU-------(2795)Billboard(线段树区间更新)
Billboard Time Limit: 20000/8000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total ...
- 【HDU2795】Billboard(线段树)
大意:给一个h*w的格子,然后给出多个1*w的板子往格子里面填,如果有空间尽量往上一行填满,输出行数,无法填补,则输出-1: 可以使用线段树转化问题,将每一排的格子数目放到每一个叶子节点上,然后每有一 ...
- 【线段树求最靠前】【HDU2795】【Billboard】
题意: 有一个H*W的广告牌,当插入一个广告时(1*Wi),问最靠前的插入方式是什么 新生赛有个类似的题目,可惜当时居然没水过去. 果断用线段树做 以H为线段 建树,存[l,r]中最大的宽度,因为区间 ...
- HDU2795 billboard【转化为线段树。】
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2795 hhanger大神的题目,水题都得有点思维. 题意:h*w的木板,放进一些1*L的物品,求每次放 ...
随机推荐
- Windows定时器
目录 第1章定时器 1 1.1 创建定时器 1 1.2 销毁定时器 1 1.3 定时器的运作 1 1.3.1 产生WM_TIMER消息 1 1.3.2 分发WM_TIME ...
- 用dx实现半透遮挡效果
四种技术方案: 1.两次绘制role实现半透遮挡2.背景中已经包含building, 则额外绘制一次半透的building即可实现半透遮挡3.利用building的遮罩实现半透遮挡, 利用rtt技术4 ...
- windows+tomcat 7配置二级域名访问其他web程序
1.在域名管理中做好二级域名的解析 2.在tomcat的server.xml中增加如下: <Host name="wx.ai77.cn" debug="0" ...
- DI 之 3.2 循环依赖 (伍)
3.2.1 什么是循环依赖 循环依赖就是循环引用,就是两个或多个Bean相互之间的持有对方,比如CircleA引用CircleB,CircleB引用CircleC,CircleC引用CircleA, ...
- js解码
如代码: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF- ...
- robotframework笔记1
机器人框架是一个基于Python的,可扩展的关键字驱动的自动化测试最终到终端的验收测试和验收测试驱动开发(ATDD)框架.它可用于检测分布式异类应用程序,其中,验证要求感人几种技术和接口. 下面列出了 ...
- css3中clip属性
clip 属性用来设置元素的形状.用来剪裁绝对定位元素. 当一幅图像的尺寸大于包含它的元素时,"clip" 属性允许规定一个元素的可见尺寸,这样此元素就会被修剪并显示在这个元素中. ...
- 《javascript高级程序设计》 第23章 离线应用与客户端存储
23.1 离线检测23.2 应用缓存23.3 数据存储 23.3.1 Cookie 23.3.2 IE 用户数据 23.3.3 Web 存储机制 23.3.4 IndexedDB 23.1 离线检 ...
- postgresql异常快速定位
今天下午在使用.NET链接postgresql的时候报了“3D000”的错误,经过测试得知原来是web.config中的数据库配置问题. 在这里有个小情况需要注意,postgresql是不允许创建相同 ...
- poi 读取 excel (.xls) 97-2003
1.sh.getLastRowNum() 比行数少1 private List<Map> getData(File file) throws Exception{ List<Map& ...