【POJ1823】【线段树】Hotel
Description
Write a program that should efficiently respond to these 3 types of instructions:
type 1: the arrival of a new group of tourists
A group of M tourists wants to occupy M free consecutive rooms. The program will receive the number i which represents the start room of the sequence of the rooms that the group wants to occupy and the number M representing the number of members of the group. It is guaranteed that all the rooms i,i+1,..,i+M-1 are free at that moment.
type 2: the departure of a group of tourists
The tourists leave in groups (not necessarilly those groups in which they came). A group with M members leaves M occupied and consecutive rooms. The program will receive the number i representing the start room of the sequence of the released rooms and the number M representing the number of members of the group. It is guaranteed that all the rooms i,i+1,..,i+M-1 are occupied.
type 3: the owner's question
The owner of the hotel may ask from time to time which is the maximal length of a sequence of free consecutive rooms. He needs this number to know which is the maximal number of tourists that could arrive to the hotel. You can assume that each room may be occupied by no more than one tourist.
Input
The next P lines will contain the number c representing the type of the instruction:
- if c is 1 then it will be followed (on the same line) by 2 other numbers, i and M, representing the number of the first room distributed to the group and the number of the members
- if c is 2 then it will be followed (on the same line) by 2 other numbers, i and M, representing the number of the first room that will be released and the number of the members of the group that is leaving
- if c is 3 then it will not be followed by any number on that line, but the program should output in the output file the maximal length of a sequence of free and consecutive rooms
Output
Sample Input
12 10
3
1 2 3
1 9 4
3
2 2 1
3
2 9 2
3
2 3 2
3
Sample Output
12
4
4
6
10
Source
/*
唐代许浑
《咸阳城东楼 / 咸阳城西楼晚眺 / 西门》 一上高城万里愁,蒹葭杨柳似汀洲。
溪云初起日沉阁,山雨欲来风满楼。
鸟下绿芜秦苑夕,蝉鸣黄叶汉宫秋。
行人莫问当年事,故国东来渭水流。
*/
#include <iostream>
#include <cstdio>
#include <algorithm>
#include <cstring>
#include <vector>
#include <utility>
#include <iomanip>
#include <string>
#include <cmath>
#include <queue>
#include <assert.h>
#include <map>
#include <ctime>
#include <cstdlib>
#include <stack>
#define LOCAL
const int MAXN = + ;
const int MAXM = + ;
const int INF = ;
const int SIZE = ;
const int maxnode = 0x7fffffff + ;
using namespace std;
int i;
struct SEGTREE{
struct Node{
int l, r;
int rmax, mmax, lmax;//分别代表从左边开始的最长,从右边开始的最长和中间的最长
int delta; /*void Count(){
rmax = lmax = mmax = 0;
for (int i = l; i <= r; i++) if (data[i] == 0){lmax = i - l;break;}
for (int i = r; i >= l; i--) if (data[i] == 0){rmax = r - i;break;}
int t = 0;
for (int i = l; i <= r; i++){ }
}*/
}tree[MAXN * ]; void pushdown(int t){
if (tree[t].delta != -){
if (tree[t].delta == ) {//全1
tree[(t<<)].lmax = tree[(t<<)].rmax = tree[(t<<)].mmax = tree[(t<<)].r - tree[(t<<)].l + ;tree[(t<<)].delta = ;
tree[(t<<) | ].lmax = tree[(t<<) | ].rmax = tree[(t<<) | ].mmax = tree[(t<<) | ].r - tree[(t<<) | ].l + ;tree[(t<<) | ].delta = ;
tree[t].delta = -;
}else{
tree[(t<<)].lmax = tree[(t<<)].rmax = tree[(t<<)].mmax = ;tree[(t<<)].delta = ;
tree[(t<<) | ].lmax = tree[(t<<) | ].rmax = tree[(t<<) | ].mmax = ;tree[(t<<) | ].delta = ;
tree[t].delta = -;
}
}
}
//更新
void update(int t){
tree[t].mmax = max(tree[t<<].mmax, max(tree[(t<<)|].mmax, tree[t<<].rmax + tree[(t<<)|].lmax));
//更新tree[t]的lmax
if (tree[t<<].lmax == tree[t<<].r - tree[t<<].l + ) tree[t].lmax = tree[t<<].lmax + tree[(t<<)|].lmax;
else tree[t].lmax = tree[t<<].lmax; //同理
if (tree[(t<<)|].rmax == tree[(t<<)|].r - tree[(t<<)|].l + ) tree[t].rmax = tree[t<<].rmax + tree[(t<<)|].rmax;
else tree[t].rmax = tree[(t<<)|].rmax;
}
void build(int t, int l, int r){
tree[t].l = l;
tree[t].r = r;
tree[t].lmax = tree[t].mmax = tree[t].rmax = tree[t].r - tree[t].l + ;
tree[t].delta = -;
if (l == r) return;
int mid = (l + r) >> ;
build(t << , l, mid);
build((t << )|, mid + , r);
}
void insert(int t, int l, int r, int val){//t为节点编号,val为权值
pushdown(t);
if (l <= tree[t].l && tree[t].r <= r){
if (val == ) {tree[t].rmax = tree[t].lmax = tree[t].mmax = tree[t].r - tree[t].l + ;tree[t].delta = ;}
else {tree[t].rmax = tree[t].lmax = tree[t].mmax = ;tree[t].delta = ;}
return;
}
int mid = (tree[t].l + tree[t].r)>>;
//if (i == 3 && tree[t].l == 10 && tree[t].r == 11)
//printf("");
if (l <= mid) insert(t << , l, r , val);
if (r > mid) insert((t << ) | , l, r, val); update(t);
}
}A;
int n, p; void init(){
scanf("%d%d", &n, &p);
A.build(, , n);
}
void work(){
for (i = ; i <= p; i++){
int t;
scanf("%d", &t);
if (t == ) printf("%d\n", A.tree[].mmax);
else if (t == ){
int l, r;
scanf("%d%d", &l, &r);
A.insert(, l, l + r - , );
}else if (t == ){
int l, r;
scanf("%d%d", &l, &r);
A.insert(, l, l + r - , );
}
}
} int main(){ init();
work();
return ;
}
【POJ1823】【线段树】Hotel的更多相关文章
- POJ 3667 Hotel(线段树 区间合并)
Hotel 转载自:http://www.cnblogs.com/scau20110726/archive/2013/05/07/3065418.html [题目链接]Hotel [题目类型]线段树 ...
- ACM: Hotel 解题报告 - 线段树-区间合并
Hotel Time Limit:3000MS Memory Limit:65536KB 64bit IO Format:%lld & %llu Description The ...
- 线段树(区间合并) POJ 3667 Hotel
题目传送门 /* 题意:输入 1 a:询问是不是有连续长度为a的空房间,有的话住进最左边 输入 2 a b:将[a,a+b-1]的房间清空 线段树(区间合并):lsum[]统计从左端点起最长连续空房间 ...
- poj 3667 Hotel (线段树)
http://poj.org/problem?id=3667 Hotel Time Limit: 3000MS Memory Limit: 65536K Total Submissions: 94 ...
- PKU 3667 Hotel(线段树)
Hotel The cows are journeying north to Thunder Bay in Canada to gain cultural enrichment and enjoy a ...
- Hotel(线段树合并)
Hotel Time Limit: 3000MS Memory Limit: 65536K Total Submissions: 14958 Accepted: 6450 Descriptio ...
- 线段树||BZOJ1593: [Usaco2008 Feb]Hotel 旅馆||Luogu P2894 [USACO08FEB]酒店Hotel
题面:P2894 [USACO08FEB]酒店Hotel 题解:和基础的线段树操作差别不是很大,就是在传统的线段树基础上多维护一段区间最长的合法前驱(h_),最长合法后驱(t_),一段中最长的合法区间 ...
- poj3667 Hotel (线段树 区间合并)
poj3667 HotelTime Limit: 3000MS Memory Limit: 65536KTotal Submissions: 18925 Accepted: 8242Descripti ...
- 洛谷P2894 [USACO08FEB]酒店Hotel [线段树]
题目传送门 酒店 题目描述 The cows are journeying north to Thunder Bay in Canada to gain cultural enrichment and ...
- Poj 3667——hotel——————【线段树区间合并】
Hotel Time Limit: 3000MS Memory Limit: 65536K Total Submissions: 13124 Accepted: 5664 Descriptio ...
随机推荐
- POI做题记录:第二届POI
Trees Memory limit: 32 MB Trees occur very often in computer science. As opposed to trees in nature, ...
- Linux学习笔记14——使用fcntl实现文件锁定
期末考试快要来了,Linux学习进度一下拉下来许多.今天学习的是文件锁定,在Linux中,实现文件锁定的方法很多,例如fcntl和lockf.下面主要是fcntl的调用. fcntl函数的原型是:in ...
- java基础(十)面向对象(五)
这里有我之前上课总结的一些知识点以及代码大部分是老师讲的笔记 个人认为是非常好的,,也是比较经典的内容,真诚的希望这些对于那些想学习的人有所帮助! 由于代码是分模块的上传非常的不便.也比较多,讲的也是 ...
- Eclipse添加快速查找Dao中方法所对应的Mybatis XML映射SQL的插件
Dao关联Mybatis快速查找的插件安装地址:http://dl.bintray.com/harawata/eclipse 安装步骤: ①Eclipse ==> Help ==> Ins ...
- hpuoj 问题 A: 做不出来踢协会!!!
问题 A: 做不出来踢协会!!! 时间限制: 1 Sec 内存限制: 128 MB提交: 291 解决: 33[提交][状态][讨论版] 题目描述 这是今天最水的一道题,如果没写出来的,呵呵,踢协 ...
- Python中逗号作用的实例分析
逗号在类型转化中的使用 主要是元组的转换 例如: >>> a=11>>> b=(a)>>> b11>>> b=(a,)>& ...
- 关于我们的Jquery操作下拉列表和复选框,自定义下拉
后半部分还有自定义下拉列表和开灯关灯的效果,可以进来来看一下 哦 如果网页有下拉列表和复选框,看一下Jquery怎么来操作他们,主要怎么来选取他们的数据,怎么设置某一项选中 先来看个下拉列表 < ...
- spring security +spring boot 自定义 403 页面
用的spring security 做的权限控制, 当 访问没有权限, 跳转 会跳到默认403 页面.不符合当前项目需求. 一下是解决方式: package com.ycmedia; import ...
- Google Web Toolkit (GWT)怎么制作多个用户界面
Google Web Toolkit即GWT是目前基于AJAX技术开发的一个比较成功的框架包,但是其附带例程中只有单页面的实例,那么应该怎么样制作多个页面呢? 其实很简单,GWT的一个模块,就是一个页 ...
- 超人学院Hadoop大数据资源分享
超人学院Hadoop大数据资源分享 http://bbs.superwu.cn/forum.php?mod=viewthread&tid=770&extra=page%3D1 很多其它 ...