博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
hdu 2795 Billboard(线段树+单点更新)
阅读量:5039 次
发布时间:2019-06-12

本文共 3450 字,大约阅读时间需要 11 分钟。

题目链接:

Billboard

Time Limit: 20000/8000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)

Total Submission(s): 13050    Accepted Submission(s): 5651

Problem Description
At the entrance to the university, there is a huge rectangular billboard of size h*w (h is its height and w is its width). The board is the place where all possible announcements are posted: nearest programming competitions, changes in the dining room menu, and other important information.
On September 1, the billboard was empty. One by one, the announcements started being put on the billboard.
Each announcement is a stripe of paper of unit height. More specifically, the i-th announcement is a rectangle of size 1 * wi.
When someone puts a new announcement on the billboard, she would always choose the topmost possible position for the announcement. Among all possible topmost positions she would always choose the leftmost one.
If there is no valid location for a new announcement, it is not put on the billboard (that's why some programming contests have no participants from this university).
Given the sizes of the billboard and the announcements, your task is to find the numbers of rows in which the announcements are placed.
 

 

Input
There are multiple cases (no more than 40 cases).
The first line of the input file contains three integer numbers, h, w, and n (1 <= h,w <= 10^9; 1 <= n <= 200,000) - the dimensions of the billboard and the number of announcements.
Each of the next n lines contains an integer number wi (1 <= wi <= 10^9) - the width of i-th announcement.
 

 

Output
For each announcement (in the order they are given in the input file) output one number - the number of the row in which this announcement is placed. Rows are numbered from 1 to h, starting with the top row. If an announcement can't be put on the billboard, output "-1" for this announcement.
 

 

Sample Input
3 5 5
2
4
3
3
3
 

 

Sample Output
1
2
1
3
-1
 
题目大意:有一块尺寸为h*w的矩形长板,要在上面贴1*wi的海报n张。海报贴的位置要尽量靠左,如果一行能够填满就填满,最后输出的是这张海报贴的高度位置。
 
解题思路:用高度进行建树,每一次比较宽度,在结构体里面定义一个mmax来表示最大的宽度,这个宽度在Updata()这个函数中不断地更新。一直不断的将以下的最大值反馈到父亲结点。
 
特别注意:1、如果高度是5,但是有2个海报,这样我们就不需要建高度为5的树了,现在看来没有特别大的区别,但是题目中给的数据是1 <= h,w <= 10^9; 1 <= n <= 200,000~~
     2、这个题目要求输出的是你更新的位置,所以就可以少一个查找的函数。再更新的函数里面,如果这个位置更新了,就可以直接输出这个位置就OK了。
     3、一定要先比较左结点,在比较右结点。左不行在考虑右。
 
详见代码。
 
1 #include 
2 #include
3 4 using namespace std; 5 6 struct node 7 { 8 int l,r; 9 int mmax;10 } s[200000*4];11 12 void InitTree(int l,int r,int k,int w)13 {14 s[k].l=l;15 s[k].r=r;16 s[k].mmax=w;17 if (l==r)18 return ;19 int mid=(l+r)/2;20 InitTree(l,mid,2*k,w);21 InitTree(mid+1,r,2*k+1,w);22 }23 24 void UpdataTree(int num,int k)//进行点的更新25 {26 if (s[k].r==s[k].l)27 {28 printf ("%d\n",s[k].l);29 s[k].mmax-=num;30 return ;31 }32 if (num<=s[k*2].mmax)33 UpdataTree(num,k*2);34 else35 UpdataTree(num,k*2+1);36 s[k].mmax=s[k*2].mmax>s[k*2+1].mmax?s[k*2].mmax:s[k*2+1].mmax;37 }38 39 int main ()40 {41 int h,w,n,a;42 while (~scanf("%d%d%d",&h,&w,&n))43 {44 int hh=h>n?n:h;45 InitTree(1,hh,1,w);46 for (int i=1; i<=n; i++)47 {48 scanf("%d",&a);49 if (a<=s[1].mmax)50 UpdataTree(a,1);51 else52 printf ("-1\n");53 }54 }55 return 0;56 }

 

 

转载于:https://www.cnblogs.com/qq-star/p/4442784.html

你可能感兴趣的文章
浏览器跨域问题
查看>>
HTML5 input控件 placeholder属性
查看>>
使用JAVA如何对图片进行格式检查以及安全检查处理
查看>>
html5实现移动端下拉刷新(原理和代码)
查看>>
iPhone开发中从一个视图跳到另一个视图有三种方法:
查看>>
pytho logging
查看>>
一个Java程序员应该掌握的10项技能
查看>>
c#英文大小写快捷键
查看>>
tpframe免费开源框架又一重大更新
查看>>
一.go语言 struct json相互转换
查看>>
什么是架构设计
查看>>
程序员学习能力提升三要素
查看>>
PHP 微信错误状态返回码说明
查看>>
【4.1】Python中的序列分类
查看>>
ubuntu 移动文件
查看>>
Easy Mock
查看>>
看看 Delphi XE2 为 VCL 提供的 14 种样式
查看>>
Python内置函数(29)——help
查看>>
机器学习系列-tensorflow-01-急切执行API
查看>>
SqlServer 遍历修改字段长度
查看>>