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

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

Source

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

cdec0645add3fc3c328197dda5c76203.png

81178cc93a2a3bb5048d90d76e7ec935.png

1 /*基础的线段树*/

2 #include

3 #include

4

5 const int maxn= 200050;6 intaa[maxn];7

8 structnode9 {10 intlef,rig,mx;11 intmid(){12 return lef+((rig-lef)>>1);13 }14 };15

16 inth,w,n;17 node reg[maxn<<2];18 inline int max(int a,intb)19 {20 return a>b?a:b;21 }22

23 void Build(int lef,int rig,intpos)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,intpos)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 intmain()53 {54 intcn;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 }

View Code

原文:http://www.cnblogs.com/gongxijun/p/3895885.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值