PKU 3667 Hotel(线段树)
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.
Input
* 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
Output
* 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.
Sample Input
10 6
1 3
1 3
1 3
1 3
2 5 5
1 6
Sample Output
1
4
7
0
5
题意:有一个旅店,刚开始有一段连续的房间,有两种操作,1、预定房间,找最靠前的一段连续D个房间(如果存在的话);2、退订房间,将[x,x+D-1]区间的房间退订。 解析:线段树维护,每个节点维护以下几个信息:左、右端点(le,ri),区间长度(len),从左边开始的最大连续长度(lelen),从右边开始的最大长度(rilen),该区间内最大连续长度(maxlen)。是否被预定用1和0表示。每次pushup(更新)时,更新
lelen,rilen,maxlen.首先lelen=lson.lelen(左儿子的),如果lelen==lson.len,说明可以向右扩展,那么lelen+=rson.lelen;rilen同理更新,maxlen=max{lson.maxlen,rson.maxlen,lelen,rilen,lson.rilen+rson.lelen};
有了这些信息,就很好去查找答案。 代码如下:
#include<cstdio>
#include<cstring>
#include<string>
#include<algorithm>
#include<set>
#include<map>
#include<queue>
#include<vector>
#include<iterator>
#include<utility>
#include<sstream>
#include<iostream>
#include<cmath>
#include<stack>
using namespace std;
const int INF=;
const double eps=0.00000001;
const int maxn=;
int N,M;
struct node
{
int le,ri,len;
int maxlen,lelen,rilen; //区间最大长度,左边最大长度,右边最大长度
void init(int state) //根据是否被标记更新
{
maxlen=state*len;
lelen=rilen=maxlen;
}
}tree[*maxn];
void build_tree(int le,int ri,int id) //初始化
{
tree[id].le=le,tree[id].ri=ri;
tree[id].len=ri-le+;
tree[id].init();
if(le==ri) return;
int mid=(le+ri)/;
build_tree(le,mid,id*);
build_tree(mid+,ri,id*+);
return;
}
void pushdown(int id)
{
node& t=tree[id];
if(t.maxlen==t.len||t.maxlen==) //全被预定或是全未预定
{
int state=(t.maxlen==t.len);
tree[id*].init(state);
tree[id*+].init(state);
}
}
void pushup(int id)
{
node& fa=tree[id]; //父亲
node& lson=tree[id*]; //左儿子
node& rson=tree[id*+]; //右儿子
fa.lelen=lson.lelen;
if(fa.lelen==lson.len) fa.lelen+=rson.lelen; //可扩展
fa.rilen=rson.rilen;
if(fa.rilen==rson.len) fa.rilen+=lson.rilen;
fa.maxlen=max(lson.maxlen,rson.maxlen); //更新maxlen
fa.maxlen=max(fa.maxlen,max(fa.lelen,fa.rilen));
fa.maxlen=max(fa.maxlen,lson.rilen+rson.lelen);
}
int query(int id,int need)
{
if(tree[id].maxlen<need) return ; //无解
if(tree[id].lelen>=need) return tree[id].le; //最左边可行
if(tree[id*].maxlen>=need) return query(id*,need); //往左边找
if(tree[id*].rilen+tree[id*+].lelen>=need) return tree[id*].ri-tree[id*].rilen+; //中间
return query(id*+,need); //右边
}
void update(int x,int y,int id,int state)
{
int le=tree[id].le,ri=tree[id].ri;
if(x<=le&&ri<=y){ tree[id].init(state); return; }
pushdown(id);
int mid=(le+ri)/;
if(x<=mid) update(x,y,id*,state);
if(y>mid) update(x,y,id*+,state);
pushup(id);
}
void solve1()
{
int start;
scanf("%d",&start);
int ans=query(,start);
printf("%d\n",ans);
if(ans) update(ans,ans+start-,,); //找到才更新
}
void solve2()
{
int start,skip;
scanf("%d%d",&start,&skip);
update(start,start+skip-,,);
}
int main()
{
cin>>N>>M;
build_tree(,N,);
for(int i=;i<=M;i++)
{
int type;
scanf("%d",&type);
if(type==) solve1();
else solve2();
}
return ;
}
PKU 3667 Hotel(线段树)的更多相关文章
- poj 3667 Hotel (线段树)
http://poj.org/problem?id=3667 Hotel Time Limit: 3000MS Memory Limit: 65536K Total Submissions: 94 ...
- POJ 3667 Hotel(线段树 区间合并)
Hotel 转载自:http://www.cnblogs.com/scau20110726/archive/2013/05/07/3065418.html [题目链接]Hotel [题目类型]线段树 ...
- poj 3667 Hotel(线段树,区间合并)
Hotel Time Limit: 3000MSMemory Limit: 65536K Total Submissions: 10858Accepted: 4691 Description The ...
- POJ 3667 Hotel (线段树区间合并)
题目链接:http://poj.org/problem?id=3667 最初给你n间空房,m个操作: 操作1 a 表示检查是否有连续的a间空房,输出最左边的空房编号,并入住a间房间. 操作2 a b ...
- [USACO08FEB]酒店Hotel 线段树
[USACO08FEB]酒店Hotel 线段树 题面 其实就是区间多维护一个lmax,rmax(表示从左开始有连续lmax个空房,一直有连续rmax个空房到最右边),合并时讨论一下即可. void p ...
- Hotel(线段树合并)
Hotel Time Limit: 3000MS Memory Limit: 65536K Total Submissions: 14958 Accepted: 6450 Descriptio ...
- 洛谷P2894 [USACO08FEB]酒店Hotel [线段树]
题目传送门 酒店 题目描述 The cows are journeying north to Thunder Bay in Canada to gain cultural enrichment and ...
- POJ 1823 Hotel 线段树
题目链接 线段树的区间合并. 和上一题差不多....第三种操作只需要输出maxx[1]的值就可以. #include <iostream> #include <vector> ...
- poj Hotel 线段树
经典线段树的题. 每个节点存储的信息:左端点连续空房间的长度,右端点连续空房间长度,连续空房间的最大长度. 由于要求每次必须从尽量靠左边的位置进行居住,那么搜索时应尽量让区间起始位置更小: 1.如果当 ...
随机推荐
- WEB打印插件Lodop
Lodop.C-Lodop使用说明及样例 Lodop(标音:劳道谱,俗称:露肚皮)是专业WEB控件,用它既可裁剪输出页面内容,又可用程序代码直接实现 复杂打印.控件功能强大,却简单易用,所有调用如 ...
- ECharts API
From:http://echarts.baidu.com/echarts2/doc/doc.html 简介 名词解析 图表类型 line bar scatter k pie radar chord ...
- Linux各种包安装及命令
1.Locate yum -y install mlocate 若出现问题: locate: can not stat () `/var/lib/mlocate/mlocate.db': 没有那个文件 ...
- JSP错题纠错
A:判断学员是否手动安装过Tomcat(练习熟练度) B:使学员了解Tomcat的运行过程 ,浏览器向Web服务器发送请求,Web站点处理请求后,把处理后的结果响应给浏览器 C:Tomcat作为Web ...
- java实现各种数据统计图(柱形图,饼图,折线图)
近期在做数据挖掘的课程设计,须要将数据分析的结果非常直观的展现给用户,这就要用到数据统计图,要实现这个功能就须要几个第三方包了: 1. jfreechart-1.0.13.jar 2. ...
- 【Android】实现动态显示隐藏密码输入框的内容
在设置输入密码框时,有些时候需要按钮控制输入的是“明文”或者“暗文”. 这里提供一种Android实现动态显示隐藏密码输入框的内容的方法: 主要是通过设置EditText的setTransformat ...
- [RxJS] Using Observable.create for fine-grained control
Sometimes, the helper methods that RxJS ships with such as fromEvent, fromPromise etc don't always p ...
- FileSystemWatcher使用方法具体解释
FileSystemWatcher控件主要功能: 监控指定文件或文件夹的文件的创建.删除.修改.重命名等活动.能够动态地定义须要监控的文件类型及文件属性修改的类型. 1.经常使用的几个基本属性: (1 ...
- td 单元格 内容自动换行
<table width="100%" border="1" align="center"> <tr> <td ...
- Glide的加载图片的帮助类,用来把图片圆角或者改成圆形图片
Glide虽然非常好用但是没找到把图片圆角的方法,所以百度了一个非常不错的加载类自己实现圆角图 感谢原文章作者:http://blog.csdn.net/weidongjian/article/det ...