博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
洛谷P2894 [USACO08FEB]酒店Hotel
阅读量:7070 次
发布时间:2019-06-28

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

 P2894 [USACO08FEB]酒店Hotel

题目描述

The cows are journeying north to Thunder Bay in Canada to gain cultural enrichment and enjoy a vacation on the sunny shores of Lake Superior. Bessie, ever the competent travel agent, has named the Bullmoose Hotel on famed Cumberland Street as their vacation residence. This immense hotel has N (1 ≤ N ≤ 50,000) rooms all located on the same side of an extremely long hallway (all the better to see the lake, of course).

The cows and other visitors arrive in groups of size Di (1 ≤ Di ≤ N) and approach the front desk to check in. Each group i requests a set of Di contiguous rooms from Canmuu, the moose staffing the counter. He assigns them some set of consecutive room numbers r..r+Di-1 if they are available or, if no contiguous set of rooms is available, politely suggests alternate lodging. Canmuu always chooses the value of r to be the smallest possible.

Visitors also depart the hotel from groups of contiguous rooms. Checkout i has the parameters Xi and Di which specify the vacating of rooms Xi ..Xi +Di-1 (1 ≤ Xi ≤ N-Di+1). Some (or all) of those rooms might be empty before the checkout.

Your job is to assist Canmuu by processing M (1 ≤ M < 50,000) checkin/checkout requests. The hotel is initially unoccupied.

奶牛们最近的旅游计划,是到苏必利尔湖畔,享受那里的湖光山色,以及明媚的阳光。作为整个旅游的策划者和负责人,贝茜选择在湖边的一家著名的旅馆住宿。这个巨大的旅馆一共有N (1 <= N <= 50,000)间客房,它们在同一层楼中顺次一字排开,在任何一个房间里,只需要拉开窗帘,就能见到波光粼粼的湖面。 贝茜一行,以及其他慕名而来的旅游者,都是一批批地来到旅馆的服务台,希望能订到D_i (1 <= D_i <= N)间连续的房间。服务台的接待工作也很简单:如果存在r满足编号为r..r+D_i-1的房间均空着,他就将这一批顾客安排到这些房间入住;如果没有满足条件的r,他会道歉说没有足够的空房间,请顾客们另找一家宾馆。如果有多个满足条件的r,服务员会选择其中最小的一个。 旅馆中的退房服务也是批量进行的。每一个退房请求由2个数字X_i、D_i 描述,表示编号为X_i..X_i+D_i-1 (1 <= X_i <= N-D_i+1)房间中的客人全部离开。退房前,请求退掉的房间中的一些,甚至是所有,可能本来就无人入住。 而你的工作,就是写一个程序,帮服务员为旅客安排房间。你的程序一共需要处理M (1 <= M < 50,000)个按输入次序到来的住店或退房的请求。第一个请求到来前,旅店中所有房间都是空闲的。

输入输出格式

输入格式:

  • Line 1: Two space-separated integers: N and M

  • Lines 2..M+1: Line i+1 contains request expressed as one of two possible formats: (a) Two space separated integers representing a check-in request: 1 and Di (b) Three space-separated integers representing a check-out: 2, Xi, and Di

输出格式:

  • Lines 1.....: For each check-in request, output a single line with a single integer r, the first room in the contiguous sequence of rooms to be occupied. If the request cannot be satisfied, output 0.

参考样例,第一行输入n,m ,n代表有n个房间,编号为1---n,开始都为空房,m表示以下有m行操作,以下 每行先输入一个数 i ,表示一种操作:

若i为1,表示查询房间,再输入一个数x,表示在1--n 房间中找到长度为x的连续空房,输出连续x个房间中左端的房间号,尽量让这个房间号最小,若找不到长度为x的连续空房,输出0。

若i为2,表示退房,再输入两个数 x,y 代表 房间号 x---x+y-1 退房,即让房间为空。

输入输出样例

输入样例#1:
10 61 31 31 31 32 5 51 6
输出样例#1:
14705 区间最长连续空位,类似最大子段和   最大子段和: 但这里区间合并更新max_l时,要判断左区间的sum是否等于max,跟最大子段和不一样 max_r同理
#include
#include
using namespace std;int n,m,p,x,y,opl,opr;struct node{ int l,r,max,max_l,max_r,sum,flag;}e[500001*4];void build(int k,int l,int r){ e[k].l=l;e[k].r=r; e[k].sum=e[k].max=e[k].max_l=e[k].max_r=r-l+1; if(l==r) return; int mid=l+r>>1; build(k<<1,l,mid);build((k<<1)+1,mid+1,r);}void down(int k){ e[k<<1].flag=e[(k<<1)+1].flag=e[k].flag; if(e[k].flag==1) e[k<<1].max=e[k<<1].max_l=e[k<<1].max_r=e[(k<<1)+1].max=e[(k<<1)+1].max_l=e[(k<<1)+1].max_r=0; else { e[k<<1].max=e[k<<1].max_l=e[k<<1].max_r=e[k<<1].sum; e[(k<<1)+1].max=e[(k<<1)+1].max_l=e[(k<<1)+1].max_r=e[(k<<1)+1].sum; } e[k].flag=0;}int ask(int k){ if(e[k].l==e[k].r) return e[k].l; if(e[k].flag) down(k); if(e[k<<1].max>=x) return ask(k<<1); int mid=e[k].l+e[k].r>>1; if(e[(k<<1)+1].max_l+e[k<<1].max_r>=x) return mid-e[k<<1].max_r+1; return ask((k<<1)+1);}void up(int k){ e[k].max=max(max(e[k<<1].max,e[(k<<1)+1].max),e[k<<1].max_r+e[(k<<1)+1].max_l); if(e[k<<1].sum==e[k<<1].max) e[k].max_l=e[k<<1].sum+e[(k<<1)+1].max_l; else e[k].max_l=e[k<<1].max_l; if(e[(k<<1)+1].sum==e[(k<<1)+1].max) e[k].max_r=e[(k<<1)+1].sum+e[k<<1].max_r; else e[k].max_r=e[(k<<1)+1].max_r;}void change(int k,int f){ if(e[k].l>=opl&&e[k].r<=opr) { if(f==1) { e[k].max=e[k].max_l=e[k].max_r=0; e[k].flag=1; return; } else { e[k].max=e[k].max_l=e[k].max_r=e[k].sum; e[k].flag=2; return; } } if(e[k].flag) down(k); int mid=e[k].l+e[k].r>>1; if(opr<=mid) change(k<<1,f); else if(opl>mid) change((k<<1)+1,f); else { change(k<<1,f); change((k<<1)+1,f); } up(k);}int main(){ scanf("%d%d",&n,&m); build(1,1,n); for(int i=1;i<=m;i++) { scanf("%d",&p); if(p==1) { scanf("%d",&x); if(e[1].max

自己做区间查询写不出来

#include
#include
using namespace std;int n,m,p,x,y,ans,ok;struct node{ int l,r,start,max,max_l,max_r;}e[500001*4];void build(int k,int l,int r){ e[k].l=l,e[k].r=r; e[k].max=r-l+1; e[k].max_l=r-l+1; e[k].max_r=r-l+1; if(l==r) return; int mid=l+r>>1; build(k<<1,l,mid); build((k<<1)+1,mid+1,r);}void ask(int k,int &longg,int & long_l,int & long_r){ if(!e[k].max) return; if(e[k<<1].max>=x) { if(ans>e[k<<1].start) { anse[k<<1].start; ask(k<<1); } } int mid=e[k].l+e[k].r>>1; else if(e[(k<<1)+1].max>=x) { if(ans>e[(k<<1)+1].start) { ans=ans,e[(k<<1)+1].start; ask((k<<1)+1); } } }int main(){ scanf("%d%d",&n,&m); build(1,1,n); for(int i=1;i<=m;i++) { scanf("%d",&p); if(p==1) { scanf("%d",&x); ans=0x7fffffff,ok=true; int longg=0,long_l=0,long_r=0; ask(1,longg,long_l,long_r); } }}
思维定势的错误的区间查询代码

 

转载于:https://www.cnblogs.com/TheRoadToTheGold/p/6360248.html

你可能感兴趣的文章
md5sum 生成 经md5加密后的字符串
查看>>
PowerShell应用之-批量执行SQL脚本
查看>>
职场加薪步步高升的五大法则
查看>>
增删主键及修改表名
查看>>
Gson库使用-排序字段(ExclusionStrategy)或者修改(FieldNamingStrategy)字段
查看>>
[医疗]DICOM VR数据类型表
查看>>
把原来可空的列变成主键
查看>>
shell 中的不相等怎么表达?大于、小于又怎么表达?
查看>>
WIF基本原理(4)联合身份验证实例
查看>>
HDFS写入和读取流程
查看>>
ScrollView 简单出错
查看>>
[置顶] VC++界面编程之--自定义CEdit(编辑框)皮肤
查看>>
动画渐变兼容各个浏览器
查看>>
java中有关线程的题目
查看>>
玩转CSS3,嗨翻WEB前端,CSS3伪类元素详解/深入浅出[原创][5+3时代]
查看>>
Oracle Minus 取差集
查看>>
mvc和三层架构到底有什么区别
查看>>
不错代码
查看>>
Github安卓开源项目编译运行
查看>>
Java+Windows+ffmpeg实现视频转换
查看>>