1593: [Usaco2008 Feb]Hotel 旅馆

1593: [Usaco2008 Feb]Hotel 旅馆

Time Limit: 10 Sec  Memory Limit: 64 MB
Submit: 489  Solved: 272
[Submit][Status][Discuss]

Description

奶牛们最近的旅游计划,是到苏必利尔湖畔,享受那里的湖光山色,以及明媚的阳光。作为整个旅游的策划者和负责人,贝茜选择在湖边的一家著名的旅馆住宿。这个巨大的旅馆一共有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)个按输入次序到来的住店或退房的请求。第一个请求到来前,旅店中所有房间都是空闲的。

Input

* 第1行: 2个用空格隔开的整数:N、M

* 第2..M+1行: 第i+1描述了第i个请求,如果它是一个订房请求,则用2个数字 1、D_i描述,数字间用空格隔开;如果它是一个退房请求,用3 个以空格隔开的数字2、X_i、D_i描述

Output

* 第1..??行: 对于每个订房请求,输出1个独占1行的数字:如果请求能被满足 ,输出满足条件的最小的r;如果请求无法被满足,输出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

HINT

 

Source

 USACO Gold

                                                               [Submit][Status][Discuss]

  把酒店看成01串,0表示没人入住,1表示有人入住  

  每个线段树的节点维护三个值:maxlen表示此线段树节点维护的区域中最长的连续长度

                                           llen表示此线段树节点从最左边开始连续的长度

                                           rlen表示此线段树节点从最右边开始连续的长度

    例如:某线段树节点维护:000001110000000111101111000

            则maxlen=7 llen=5 rlen=3

 1 #include<iostream>
 2 #include<cstdio>
 3 #include<cstdlib>
 4 #include<cstring>
 5 #include<algorithm>
 6 #include<cmath>
 7 using namespace std;
 8 typedef long long LL;
 9 const int maxn=50010;
10 struct node{
11     int l,r;
12     int ls,rs;
13     int maxlen,llen,rlen;
14     int lazy;
15 }seg[maxn*10];
16 int N,M;
17 int tot=1;
18 void updata_down(int rt){
19     if(seg[rt].lazy==-1) return ;
20     int d=seg[rt].lazy;
21     int lson=seg[rt].ls; int rson=seg[rt].rs;
22     seg[lson].maxlen=seg[lson].llen=seg[lson].rlen=(seg[lson].r-seg[lson].l+1)*d;
23     seg[rson].maxlen=seg[rson].llen=seg[rson].rlen=(seg[rson].r-seg[rson].l+1)*d;
24     seg[lson].lazy=seg[rson].lazy=seg[rt].lazy;
25     seg[rt].lazy=-1;
26 }
27 void updata_up(int rt){
28     int lson=seg[rt].ls; int rson=seg[rt].rs;
29     seg[rt].maxlen=max(seg[lson].maxlen,max(seg[rson].maxlen,seg[lson].rlen+seg[rson].llen));
30     if(seg[lson].llen==seg[lson].r-seg[lson].l+1) seg[rt].llen=seg[lson].llen+seg[rson].llen;
31     else seg[rt].llen=seg[lson].llen;
32     if(seg[rson].rlen==seg[rson].r-seg[rson].l+1) seg[rt].rlen=seg[rson].rlen+seg[lson].rlen;
33     else seg[rt].rlen=seg[rson].rlen;
34 }
35 void Build(int rt,int l,int r){
36     seg[rt].l=l; seg[rt].r=r;
37     seg[rt].maxlen=seg[rt].llen=seg[rt].rlen=(r-l+1);
38     seg[rt].lazy=-1;
39     if(l==r) return ;
40     int mid=(l+r)>>1;
41     tot++; seg[rt].ls=tot; Build(seg[rt].ls,l,mid); 
42     tot++; seg[rt].rs=tot; Build(seg[rt].rs,mid+1,r);
43 }
44 int query(int rt,int Len){
45     updata_down(rt);
46     int lson=seg[rt].ls; int rson=seg[rt].rs;
47     if(seg[rt].maxlen<Len) return 0;
48     if(seg[rt].r-seg[rt].l+1==Len) return seg[rt].l;
49     if(seg[lson].maxlen>=Len) return  query(lson,Len);
50     if(seg[lson].rlen+seg[rson].llen>=Len) return seg[lson].r-seg[lson].rlen+1;
51     return query(rson,Len);
52 }
53 void change(int rt,int l,int r,int k){
54     updata_down(rt);
55     if(l<=seg[rt].l&&seg[rt].r<=r){
56         seg[rt].maxlen=seg[rt].llen=seg[rt].rlen=(seg[rt].r-seg[rt].l+1)*k;
57         seg[rt].lazy=k;
58         return ;
59     }
60     int lson=seg[rt].ls; int rson=seg[rt].rs;
61     int mid=(seg[rt].l+seg[rt].r)>>1;
62     if(l<=mid) change(lson,l,r,k);
63     if(mid+1<=r) change(rson,l,r,k);
64     updata_up(rt);
65 }
66 int main(){
67     scanf("%d%d",&N,&M);
68     Build(1,1,N);
69     int k,x,y;
70     while(M--){
71         scanf("%d",&k);
72         if(k==1){
73             scanf("%d",&x);
74             if(x>seg[1].maxlen) printf("0\n");
75             else{
76                 y=query(1,x);
77                 printf("%d\n",y);
78                 change(1,y,y+x-1,0);
79             }
80         }
81         else{
82             scanf("%d%d",&x,&y);
83             change(1,x,x+y-1,1);
84         }
85     }
86     return 0;
87 }

 

转载于:https://www.cnblogs.com/CXCXCXC/p/5001571.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/543914.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

最长递增子序列 子串_最长递增子序列

最长递增子序列 子串Description: 描述&#xff1a; This is one of the most popular dynamic programming problems often used as building block to solve other problems. 这是最流行的动态编程问题之一&#xff0c;通常用作解决其他问题的基础。 Problem statement: 问…

beta版本项目冲刺

项目冲刺第一天项目冲刺第二天项目冲刺第三天项目冲刺第四天项目冲刺第五天项目冲刺第六天项目冲刺第七天转载于:https://www.cnblogs.com/malinlin/p/5006041.html

mkdir 函数_PHP mkdir()函数与示例

mkdir 函数PHP mkdir()函数 (PHP mkdir() function) The full form of mkdir is "Make Directory", the function mkdir() is used to create a directory. mkdir的完整格式为“ Make Directory” &#xff0c; 函数mkdir()用于创建目录。 Syntax: 句法&#xff1a…

WPF自定义控件与样式(5)-Calendar/DatePicker日期控件自定义样式及扩展

原文:WPF自定义控件与样式(5)-Calendar/DatePicker日期控件自定义样式及扩展一&#xff0e;前言 申明&#xff1a;WPF自定义控件与样式是一个系列文章&#xff0c;前后是有些关联的&#xff0c;但大多是按照由简到繁的顺序逐步发布的等&#xff0c;若有不明白的地方可以参考本…

Cookie介绍及使用

Cookie学习: 作用:解决了发送的不同请求的数据共享问题 使用: Cookie的创建和存储//创建Cookie对象Cookie cnew Cookie("mouse","");//设置cookie(可选)//设置有效期c.setMaxAge(int seconds);//设置有效路径c.setPath(String uri);//响应Cookie信息给客…

acm模式_ACM的完整形式是什么?

acm模式ACM&#xff1a;计算机协会 (ACM: Association for Computing Machinery) ACM is an abbreviation of the "Association for Computing Machinery (ACM)". ACM是“计算机协会(ACM)”的缩写 。 It is an international academic association or scholarly soc…

c语言:用%f输出实数,只能得到6位小数及求float型数据的有效位数

1.用%f输出实数&#xff0c;只能得到6位小数。程序&#xff1a;#include<stdio.h>int main(){double a 1.0;printf("%f\n",a/3);return 0;}结果&#xff1a;0.333333请按任意键继续. . .2.float型数据的有效位数。程序&#xff1a;#include<stdio.h>int…

二分法查找算法

二分法查找索引值 二分法查找算法步骤&#xff1a;(前提&#xff1a;查询数组为一组有序数)1、定义低位和高位指针low&#xff0c;high&#xff1b;2、通过判断low和high的所指的数值中间值mid来判断关键值是在高位段还是低位段。例题解析&#xff1a; 查找5的索引值 sum {1,2…

bba70_BBA的完整形式是什么?

bba70BBA&#xff1a;工商管理学士 (BBA: Bachelor of Business Administration) BBA is an abbreviation of Bachelor of Business Administration also spelled as B.B.A. In the field of Business Administration, it is an undergraduate degree program. This is a degre…

Qt和纹理

2019独角兽企业重金招聘Python工程师标准>>> test 转载于:https://my.oschina.net/assange/blog/537631

计算机图形学图形旋转_计算机图形学翻译

计算机图形学图形旋转计算机图形学| 翻译 (Computer Graphics | Translations) Transformation techniques mean to modify the current shape or object in a particular manner. Changing of an object after creation, in terms of position or even size is known as trans…

AP 1532E register   Cisco 2504 AP注册WLC

客户的环境是&#xff1a;WLC是 2504 的AP的型号是 1532E的首先要是版本匹配&#xff0c;那么我们就要查一个兼容性列表&#xff0c;请看附件同时&#xff0c;我们要把WLC的版本升级到AIR-CT2500-K9-8-1-111-0.aes 这个版本&#xff1b;同时由于瘦AP 1532E的版本是 Cisco IOS S…

Python 位运算、判断、循环

位运算 1、原码、反码和补码 计算机内部使用补码来表示 2、按位运算实现快速计算 (1) 通过^(异或)快速交换两个整数。 a^b b^a a^b (2) 通过a&(-a)快速获取a的最后为1 位置的整数。 00 00 01 01 -> 5 & 11 11 10 11 -> -5 - - - 00 00 00 01-> 14、利用位运…

dbms数据库管理系统_数据库管理系统(DBMS)中的视图

dbms数据库管理系统DBMS College professor once realized that students feel sad when they see their friends marks higher than them and it creates a negative impact on them. It gave the Professor an idea to create a view table in his student academic result d…

C#中IDisposable 回收非托管资源

C#中IDisposable 更多2014/9/7 来源&#xff1a;C#学习浏览量&#xff1a;4185学习标签&#xff1a; IDisposable本文导读&#xff1a;C#中IDisposable接口的主要用途是释放非托管资源。当不再使用托管对象时&#xff0c;垃圾回收器会自动释放分配给该对象的内存。但无法预测进…

css导航栏_使用CSS的导航栏

css导航栏CSS | 导航栏 (CSS | Navigation Bar) Developing websites is great but developing a user-friendly website is even greater. So how does one design a user-friendly website? What tools to use? Well, there are many tools to mention which are quite hel…

Python 集合、序列基础知识

集合 Python 中set与dict类似&#xff0c;也是一组key的集合&#xff0c;但不存储value。由于key不能重复&#xff0c;所以&#xff0c;在set中&#xff0c;没有重复的key。 key为不可变类型&#xff0c;即可哈希的值。 num {} print(type(num)) # <class dict> num …

Java代理系列-静态代理

2019独角兽企业重金招聘Python工程师标准>>> 代理模式可以做很多事&#xff0c;像hibernate&#xff0c;spring都使用了代理模式。 spring的aop就是用代理做的。 本系列分为4章&#xff0c;静态代理&#xff0c;动态代理热身&#xff0c;动态代理&#xff0c;cglib代…

什么是证书颁发机构?

CA&#xff1a;证书颁发机构 (CA: Certificate Authority) CA is an abbreviation of the "Certificate Authority". CA是“证书颁发机构”的缩写 。 It is also known as a "certification authority", is a trusted corporation or organization that i…

SQL----函数

在看script的时候&#xff0c;经常会发现一些看不懂的地方。搜索了一下&#xff0c;发现sql还有很多的函数&#xff0c;这是以前不了解的。在这里做一个练习跟总结--------|length()返回字符串的长度select length(alliance_id) from application;--------|substr(string,st…