题目传送门

酒店

题目描述

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,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 退房,即让房间为空。

输入输出格式

输入格式:

* 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.

输入输出样例

输入样例#1:

10 6
1 3
1 3
1 3
1 3
2 5 5
1 6
输出样例#1:

1
4
7
0
5

  分析:

  可以说这一类题目就是检验自己线段树是否真正理解透彻的测验。

  对于这题,我们需要维护四个信息,$sum$表示这一段最大的连续空房间数,$sl$表示这一段从左数的最大连续空房间数,$sr$表示这一段从右数的最大连续空房间数,$sign$表示这段区间是否被修改。

  在维护信息时,$pushup$操作如下,详细解释在代码中:

inline void pushup(int rt)
{
if( t[ls].sum==t[ls].len )
t[rt].sl=t[ls].sum+t[rs].sl;//如果左子树全为空的情况
else
t[rt].sl=t[ls].sl;
if( t[rs].sum==t[rs].len )
t[rt].sr=t[rs].sum+t[ls].sr;//右子树全为空的情况
else
t[rt].sr=t[rs].sr;
t[rt].sum=max(max(t[ls].sum,t[rs].sum),t[ls].sr+t[rs].sl);
//求最大连续空房间数。
}

  $pushdown$操作如下:

inline void pushdown(int rt)
{
if( t[rt].sign== ) return;
if( t[rt].sign== ) {//如果sign为1,则房间已经被占用了
t[ls].sum=t[ls].sl=t[ls].sr=;
t[rs].sum=t[rs].sl=t[rs].sr=;
t[ls].sign=t[rs].sign=;
}
if( t[rt].sign==- ) {//如果sign为-1,则房间要空出来
t[ls].sum=t[ls].sl=t[ls].sr=t[ls].len;
t[rs].sum=t[rs].sl=t[rs].sr=t[rs].len;
t[ls].sign=t[rs].sign=-;
}
t[rt].sign=;
}

  再结合全部代码应该就很好理解了。

  Code:

//It is made by HolseLee on 5th Nov 2018
//Luogu.org P2894
#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
#define ls (rt<<1)
#define rs (rt<<1|1)
using namespace std; const int N=1e5+;
int n,m;
struct Segment {
int sum,sl,sr,len,sign;
}t[N<<]; inline int read()
{
char ch=getchar(); int x=; bool flag=false;
while( ch<'' || ch>'' ) {
if( ch=='-' ) flag=true; ch=getchar();
}
while( ch>='' && ch<='' ) {
x=x*+ch-''; ch=getchar();
}
return flag ? -x : x;
} inline void pushup(int rt)
{
if( t[ls].sum==t[ls].len )
t[rt].sl=t[ls].sum+t[rs].sl;
else
t[rt].sl=t[ls].sl;
if( t[rs].sum==t[rs].len )
t[rt].sr=t[rs].sum+t[ls].sr;
else
t[rt].sr=t[rs].sr;
t[rt].sum=max(max(t[ls].sum,t[rs].sum),t[ls].sr+t[rs].sl);
} inline void pushdown(int rt)
{
if( t[rt].sign== ) return;
if( t[rt].sign== ) {
t[ls].sum=t[ls].sl=t[ls].sr=;
t[rs].sum=t[rs].sl=t[rs].sr=;
t[ls].sign=t[rs].sign=;
}
if( t[rt].sign==- ) {
t[ls].sum=t[ls].sl=t[ls].sr=t[ls].len;
t[rs].sum=t[rs].sl=t[rs].sr=t[rs].len;
t[ls].sign=t[rs].sign=-;
}
t[rt].sign=;
} void build(int l,int r,int rt)
{
t[rt].sign=;
t[rt].sum=t[rt].sl=t[rt].sr=t[rt].len=r-l+;
if( l==r ) return;
int mid=(l+r)>>;
build(l,mid,ls); build(mid+,r,rs);
} void update(int l,int r,int rt,int L,int R,int C)
{
pushdown(rt);
if( L<=l && r<=R ) {
if( C== ) t[rt].sum=t[rt].sl=t[rt].sr=;
else t[rt].sum=t[rt].sl=t[rt].sr=t[rt].len;
t[rt].sign=C;
return;
}
int mid=(l+r)>>;
if( L<=mid ) update(l,mid,ls,L,R,C);
if( R>mid ) update(mid+,r,rs,L,R,C);
pushup(rt);
} int query(int l,int r,int rt,int C)
{
pushdown(rt);
if( l==r ) return l;
int mid=(l+r)>>;
if( t[ls].sum>=C ) return query(l,mid,ls,C);
else if( t[ls].sr+t[rs].sl>=C ) return (mid-t[ls].sr+);
else return query(mid+,r,rs,C);
} int main()
{
n=read(), m=read();
int opt,x,y;
build(,n,);
for(int i=; i<=m; ++i) {
opt=read();
if( opt== ) {
x=read();
if( t[].sum<x ) { puts(""); continue; }
printf("%d\n",y=query(,n,,x));
update(,n,,y,y+x-,);
} else {
x=read(), y=read();
update(,n,,x,x+y-,-);
}
}
return ;
}

洛谷P2894 [USACO08FEB]酒店Hotel [线段树]的更多相关文章

  1. 洛谷 P2894 [USACO08FEB]酒店Hotel-线段树区间合并(判断找位置,不需要维护端点)+分治

    P2894 [USACO08FEB]酒店Hotel 题目描述 The cows are journeying north to Thunder Bay in Canada to gain cultur ...

  2. 洛谷 P2894 [USACO08FEB]酒店Hotel 解题报告

    P2894 [USACO08FEB]酒店Hotel 题目描述 The cows are journeying north to Thunder Bay in Canada to gain cultur ...

  3. 洛谷P2894 [USACO08FEB]酒店Hotel

    P2894 [USACO08FEB]酒店Hotel https://www.luogu.org/problem/show?pid=2894 题目描述 The cows are journeying n ...

  4. 洛谷P2894[USACO08FEB]酒店Hotel(线段树)

    问题描述 奶牛们最近的旅游计划,是到苏必利尔湖畔,享受那里的湖光山色,以及明媚的阳光.作为整个旅游的策划者和负责人,贝茜选择在湖边的一家著名的旅馆住宿.这个巨大的旅馆一共有N (1 <= N & ...

  5. 洛谷 P2894 [USACO08FEB]酒店Hotel

    题目描述 The cows are journeying north to Thunder Bay in Canada to gain cultural enrichment and enjoy a ...

  6. 区间连续长度的线段树——洛谷P2894 [USACO08FEB]酒店Hotel

    https://www.luogu.org/problem/P2894 #include<cstdio> #include<iostream> using namespace ...

  7. P2894 [USACO08FEB]酒店Hotel 线段树

    题目大意 多次操作 查询并修改区间内长度==len的第一次出现位置 修改区间,变为空 思路 类似于求区间最大子段和(应该是这个吧,反正我没做过) 维护区间rt的 从l开始向右的最长长度 从r开始向左的 ...

  8. [USACO08FEB]酒店Hotel 线段树

    [USACO08FEB]酒店Hotel 线段树 题面 其实就是区间多维护一个lmax,rmax(表示从左开始有连续lmax个空房,一直有连续rmax个空房到最右边),合并时讨论一下即可. void p ...

  9. 洛谷 P2894 [USACO08FEB]酒店

    题目描述 用线段树维护三个值:区间最长空位长度,从左端点可以延伸的最长空位长度,从右端点可以延伸的最长空位长度. #include<complex> #include<cstdio& ...

随机推荐

  1. 【hdu3842】 Machine Works

    http://acm.hdu.edu.cn/showproblem.php?pid=3842 (题目链接) 题意 一个公司使用一个厂房$D$天,希望获利最大.有$n$台机器,每一台可以在第$D_i$天 ...

  2. 【CF437C】The Child and Toy

    题目大意:给定一个有 N 个点,M 条边的无向图,点有点权,删除一个点就要付出所有与之有联系且没有被删除的点的点权之和的代价,求将所有点删除的最小代价是多少. 题解:从图连通性的角度出发,删除所有点就 ...

  3. Mac 显示sudo: pip: command not found

    Mac显示sudo: pip: command not found mac在安装完pip模块后,使用pip命令会提示sudo: pip: command not found moyanzhudeMac ...

  4. debian及ubuntu挂载本地硬盘的ISO镜像文件

    1.定位Debian ISO镜像的位置,比如说sda3 fdisk -l 2.挂载: # mount -t auto /dev/sda3 /media/mnt 生成isodebian路径 /mnt# ...

  5. 个推用户画像产品(个像)iOS集成实践

    最近业务方给我们部门提了新的需求,希望能构建精准用户画像.我们尝试使用的是个推(之前专门做消息推送的公司)旗下新推出的产品“个像·用户画像”.根据官方的说法,个像能够为APP开发者提供丰富的用户画像数 ...

  6. es7----proxy

    proxy是代理的意思,es7新增这个可以代理某个变量的“增删改查”,vue的核心原理就是这个~~ 基本使用方法: let json = {a: 123, c: 999} let p = new Pr ...

  7. 样本标准差分母为何是n-1

    sklearn实战-乳腺癌细胞数据挖掘 https://study.163.com/course/introduction.htm?courseId=1005269003&utm_campai ...

  8. Linux让git记住账号密码

    Linux让git记住账号密码 ——IT唐伯虎 摘要: Linux让git记住账号密码. 1.进入根目录,指令:cd / 2.创建记录账号密码的文件,指令:touch .git-credentials ...

  9. SQL记录-PLSQL-EXIT/CONTINUE/GOTO

    PL/SQL EXIT语句   在PL/SQL编程语言中,EXIT语句有以下两种用法: 当循环中遇到EXIT语句循环立即终止,程序控制继续下一个循环语句后面. 如果使用嵌套循环(即一个循环内的另一个循 ...

  10. [转载]Juicer – 一个Javascript模板引擎的实现和优化

    http://ued.taobao.org/blog/2012/04/juicer-%E4%B8%80%E4%B8%AAjavascript%E6%A8%A1%E6%9D%BF%E5%BC%95%E6 ...