前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >HDU-------(2795)Billboard(线段树区间更新)

HDU-------(2795)Billboard(线段树区间更新)

作者头像
Gxjun
发布2018-03-26 11:15:45
6760
发布2018-03-26 11:15:45
举报
文章被收录于专栏:mlml

Billboard

Time Limit: 20000/8000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 10594    Accepted Submission(s): 4686

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

Author

hhanger@zju

Source

HDOJ 2009 Summer Exercise(5)

 代码:     代码写的比较脆,花掉的时间是:3795ms 呵~~呵~~ ,呵了个呵的!

代码语言:javascript
复制
 1 /*基础的线段树*/
 2 #include<cstdio>
 3 #include<cstring>
 4 
 5 const int maxn= 200050;
 6 int aa[maxn];
 7 
 8 struct node
 9 {
10     int lef,rig,mx;
11     int mid(){
12       return lef+((rig-lef)>>1);
13     }
14 };
15 
16 int h,w,n;
17 node  reg[maxn<<2];
18 inline int max(int a,int b)
19 {
20   return a>b?a:b;
21 }
22 
23 void Build(int lef,int rig,int pos)
24 {
25      reg[pos]=(node){lef,rig,w};
26      if(lef==rig) return ;
27      int mid=reg[pos].mid();
28      Build(lef,mid,pos<<1);
29      Build(mid+1,rig,pos<<1|1);
30 }
31 
32 void Work(int val,int pos)
33 {
34     if(reg[pos].mx>=val)
35     {
36        if(reg[pos].rig==reg[pos].lef)
37        {
38           reg[pos].mx-=val;
39           printf("%d\n",reg[pos].rig);
40           return ;
41        }
42        if(val<=reg[pos<<1].mx)
43            Work(val,pos<<1);
44        else 
45            Work(val,pos<<1|1);
46       reg[pos].mx=max(reg[pos<<1].mx,reg[pos<<1|1].mx);
47      }
48    else if(pos==1) printf("-1\n");
49    return ;
50 }
51 
52 int main()
53 {
54     int cn;
55    while(scanf("%d%d%d",&h,&w,&n)!=EOF)
56    {
57         if(h>n)  h=n;
58          Build(1,h,1);
59       while(n--)
60       {
61         scanf("%d",&cn);
62         Work(cn,1);
63       }
64    }
65    return 0;
66 }
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2014-08-06 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • Billboard
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档