time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

Nowadays it is becoming increasingly difficult to park a car in cities successfully. Let's imagine a segment of a street as long as L meters
along which a parking lot is located. Drivers should park their cars strictly parallel to the pavement on the right side of the street (remember that in the country the authors of the tasks come from the driving is right side!). Every driver when parking wants
to leave for themselves some extra space to move their car freely, that's why a driver is looking for a place where the distance between his car and the one behind his will be no less than b meters
and the distance between his car and the one in front of his will be no less than f meters (if there's no car behind then the car
can be parked at the parking lot segment edge; the same is true for the case when there're no cars parked in front of the car). Let's introduce an axis of coordinates along the pavement. Let the parking lot begin at point 0 and end at point L.
The drivers drive in the direction of the coordinates' increasing and look for the earliest place (with the smallest possible coordinate) where they can park the car. In case there's no such place, the driver drives on searching for his perfect peaceful haven.
Sometimes some cars leave the street and free some space for parking. Considering that there never are two moving cars on a street at a time write a program that can use the data on the drivers, entering the street hoping to park there and the drivers leaving
it, to model the process and determine a parking lot space for each car.

Input

The first line contains three integers Lb и f (10 ≤ L ≤ 100000, 1 ≤ b, f ≤ 100).
The second line contains an integer n (1 ≤ n ≤ 100)
that indicates the number of requests the program has got. Every request is described on a single line and is given by two numbers. The first number represents the request type. If the request type is equal to 1,
then in that case the second number indicates the length of a car (in meters) that enters the street looking for a place to park. And if the request type is equal to 2,
then the second number identifies the number of such a request (starting with 1) that the car whose arrival to the parking lot was described
by a request with this number, leaves the parking lot. It is guaranteed that that car was parked at the moment the request of the 2 type was
made. The lengths of cars are integers from 1 to 1000.

Output

For every request of the 1 type print number -1 on
the single line if the corresponding car couldn't find place to park along the street. Otherwise, print a single number equal to the distance between the back of the car in its parked position and the beginning of the parking lot zone.

Examples
input
30 1 2
6
1 5
1 4
1 5
2 2
1 5
1 4
output
0
6
11
17
23
input
30 1 1
6
1 5
1 4
1 5
2 2
1 5
1 4
output
0
6
11
17
6
input
10 1 1
1
1 12
output
-1

【题解】

把车开走操作的x指的是n个操作里面的第x个操作对应的车。

这题好坑啊,也怪自己没看清题目。它说的是长度为L。。

0..L说的是点。然后相邻两个点之间的距离为1,这样就组成长度为L的一段路了-_-.

我们不要管他。就变成0..L-1

这样每个点就代表一个距离了。而不是真的是一个点。。

然后我们在这条路的前边扩充b,在后边扩充f

整个区间就变成[-b..L-1+f]了(线段树不管你区间是不是负都可以的^_^)

输入的车的长度是x

那么问题就转换成在这个区间内找一段x+b+f的连续空位置。

假设找到的最左端的位置是pos;

那么pos+b就是要输出的答案了。

然后占据的时候不是占据pos..pos+b+f+x

而应该占据pos+b..pos+x-1

但我觉得这个问题还是有点BUG的。

就是后面进来的车停在了前面进来的车的前面b单位长度处。那么如果f>b,前面那辆车不就不满足要求了吗。。。(路人:出题人就是爷,你管他呢)

找连续空位置的话。

记录llx[rt],rlx[rt],lx[rt]分别表示这个节点从最左开始连续的空位置数目,这个节点从最右开始连续的空位置数目,整个区间不管哪里,连续的空位置数目。

然后所求的连续空位置有3种可能。

1.全部在左区间

2.全部在右区间。

3.横跨两个区间。

所以得到lx[rt] = max(lx[rt<<1],lx[rt<<1|1],rlx[rt<<1]+llx[rt<<1|1]);

因为连续区间块的时候要尽量往左。

所以先递归左儿子。然后是横跨中间的情况(如果是这种情况就可以直接输出起始位置了);最后是右儿子;

【代码】

#include <cstdio>
#include <algorithm>
#define lson begin,m,rt<<1
#define rson m+1,end,rt<<1|1 using namespace std; const int MAXL = 101000; struct data2
{
int l,r;
}; data2 qujian[101];
int l, b, f, n;
int cover[MAXL * 4],llx[MAXL*4],rlx[MAXL*4],lx[MAXL*4]; void push_up(int rt,int len)
{
lx[rt] = max(lx[rt << 1], lx[rt << 1 | 1]);
lx[rt] = max(lx[rt], rlx[rt << 1] + llx[rt << 1 | 1]);
llx[rt] = llx[rt << 1];
if (llx[rt] == (len - (len >> 1))) //如果左区间全是连续的空位置。
llx[rt] += llx[rt << 1 | 1];//则加上右区间从最左开始的连续空位置数目。
rlx[rt] = rlx[rt << 1 | 1];
if (rlx[rt] == (len >> 1))
rlx[rt] += rlx[rt << 1];
} void build(int begin, int end, int rt)
{
cover[rt] = 0;
if (begin == end)
{
llx[rt] = rlx[rt] = lx[rt] = 1;
return;
}
int m = (begin + end) >> 1;
build(lson);
build(rson);
push_up(rt,end-begin+1);
} void input_data()
{
scanf("%d%d%d", &l, &b, &f);
build(-b, l + f -1, 1);
} void push_down(int rt,int len)
{
if (cover[rt] != -1)
{
cover[rt << 1] = cover[rt << 1 | 1] = cover[rt];
if (cover[rt] == 1)
{
llx[rt << 1] = rlx[rt << 1] = lx[rt << 1] = 0;
llx[rt << 1| 1] = rlx[rt << 1 | 1] = lx[rt << 1 | 1] = 0;
}
else
{
llx[rt << 1] = rlx[rt << 1] = lx[rt << 1] = len - (len >> 1);
llx[rt << 1 | 1] = rlx[rt << 1 | 1] = lx[rt << 1 | 1] = len >> 1;
}
cover[rt] = -1;
}
} int query(int len, int begin, int end, int rt)
{
if (begin == end)
return begin;
push_down(rt,end - begin+1);
int m = (begin + end) >> 1;
if (lx[rt << 1] >= len)
return query(len, lson);
else
if (rlx[rt << 1] + llx[rt << 1 | 1] >= len)
return m - rlx[rt << 1] + 1; //返回的这个坐标可以手算模拟下。
else
return query(len, rson);
} void up_data(int l, int r, int num, int begin, int end, int rt) //用于更新节点。
{
if (l <= begin && end <= r)
{
cover[rt] = num;
if (num == 1)
{
llx[rt] = rlx[rt] = lx[rt] = 0;
return;
}
else
{
llx[rt] = rlx[rt] = lx[rt] = end - begin + 1;
}
return;
}
push_down(rt,end - begin+1);
int m = (begin + end) >> 1;
if (l <= m)
up_data(l, r, num, lson);
if (m < r)
up_data(l, r, num, rson);
push_up(rt, end - begin + 1);
} void output_ans()
{
scanf("%d", &n);
for (int i = 1; i <= n; i++)
{
int op, x;
scanf("%d%d", &op, &x);
if (op == 1)
{
int len = x + b + f;
if (len > lx[1])
printf("-1\n");
else
{
int qidian = query(len, -b, l + f - 1, 1);
int cl, cr;
cl = qidian + b; //[cl,cr]是要修改的区间。
cr = cl + x - 1;
qujian[i].l = cl;
qujian[i].r = cr;
up_data(cl, cr, 1, -b, l + f - 1, 1);
printf("%d\n", qidian+b);
}
}
else
{
int zuo, you;
zuo = qujian[x].l;
you = qujian[x].r;
up_data(zuo, you, 0, -b, l + f - 1, 1);
}
}
} int main()
{
//freopen("F:\\rush.txt", "r", stdin);
//freopen("F:\\rush_out.txt", "w", stdout);
input_data();
output_ans();
return 0;
}

【26.8%】【CF 46D】Parking Lot的更多相关文章

  1. 【26】Remove Duplicates from Sorted Array

    [26]Remove Duplicates from Sorted Array Given a sorted array, remove the duplicates in place such th ...

  2. 【codeforces】【比赛题解】#851 CF Round #432 (Div.2)

    cf真的难…… 点我浏览丧题. [A]Arpa和她对墨西哥人浪的研究 Arpa正在对墨西哥人浪进行研究. 有n个人站成一排,从1到n编号,他们从时刻0开始墨西哥人浪. 在时刻1,第一个人站起来.在时刻 ...

  3. 【CF 453A】 A. Little Pony and Expected Maximum(期望、快速幂)

    A. Little Pony and Expected Maximum time limit per test 1 second memory limit per test 256 megabytes ...

  4. JZOJ 5184. 【NOIP2017提高组模拟6.29】Gift

    5184. [NOIP2017提高组模拟6.29]Gift (Standard IO) Time Limits: 1000 ms  Memory Limits: 262144 KB  Detailed ...

  5. 【刷题记录】 && 【算法杂谈】折半枚举与upper_bound 和 lower_bound

    [什么是upper_bound 和 lower_bound] 简单来说lower_bound就是你给他一个非递减数列[first,last)和x,它给你返回非递减序列[first, last)中的第一 ...

  6. 【实战Java高并发程序设计6】挑战无锁算法:无锁的Vector实现

    [实战Java高并发程序设计 1]Java中的指针:Unsafe类 [实战Java高并发程序设计 2]无锁的对象引用:AtomicReference [实战Java高并发程序设计 3]带有时间戳的对象 ...

  7. 【实战Java高并发程序设计 3】带有时间戳的对象引用:AtomicStampedReference

    [实战Java高并发程序设计 1]Java中的指针:Unsafe类 [实战Java高并发程序设计 2]无锁的对象引用:AtomicReference AtomicReference无法解决上述问题的根 ...

  8. 【模拟题(电子科大MaxKU)】解题报告【树形问题】【矩阵乘法】【快速幂】【数论】

    目录: 1:一道简单题[树形问题](Bzoj 1827 奶牛大集会) 2:一道更简单题[矩阵乘法][快速幂] 3:最简单题[技巧] 话说这些题目的名字也是够了.... 题目: 1.一道简单题 时间1s ...

  9. 【Android】【录音】Android录音--AudioRecord、MediaRecorder

    [Android][录音]Android录音--AudioRecord.MediaRecorder Android提供了两个API用于实现录音功能:android.media.AudioRecord. ...

随机推荐

  1. android图片特效处理之怀旧效果

    图片特效处理系列将介绍图片的像素点的特效处理,这些物资注重的是原理.也就是说只要你知道这些算法不管是C++,VB,C#,Java都可以做出相同的特效.下面将介绍图片怀旧效果的算法.算法如下: 上面公式 ...

  2. 1.19 Python基础知识 - 软件目录开发规范及不同模块之间的调用

    一个软件项目的开发,除了需要很厉害的开发能力,同时在软件开发项目时,也需要对项目结构有良好的组织能力,将功能进行拆分,不同的功能放在不同的目录或文件中,方便日后的维护,升级等操作.比如核心代码的目录, ...

  3. HTTP浅谈

    HTTP浅谈 1···什么是HTTP? HTTP协议就是超文本传输协议(HyperText Transfer Protocol),通俗理解是浏览器和web服务器传输数据格式的协议,HTTP协议是一个应 ...

  4. 洛谷—— P1162 填涂颜色

    https://www.luogu.org/problem/show?pid=1162 题目描述 由数字0 组成的方阵中,有一任意形状闭合圈,闭合圈由数字1构成,围圈时只走上下左右4个方向.现要求把闭 ...

  5. 让我们彻底看清MVC、MVP

    这里開始记录下来自己对MVC.MVP.MVVM这三种框架模式的理解,本文从以下几个方面来梳理. 架构的目的 框架模式.设计模式 MVC设计的介绍 MVC在Android中的应用 MVC该怎样设计 MV ...

  6. java文件处理 之 读写TXT(比之c++,重置文件头,int转string)

    一:c/c++ 处理文件的使用方法.详见博客 c++文件操作 二:java与c++的方便之处: (1) java在读取文件时.能够对字符流进行处理,又一次进行编码,如 InputStreamReade ...

  7. Python 极简教程(十二)逻辑控制语句 if else

    计算机软件之所以能够对不同的情况进行不同的处理,就是我们在编码的时候,通过逻辑控制语句,告诉软件在不同的情况下应该做什么处理. 比如我们在登录的时候,那么当你输入正确的账号密码和错误的账号密码,完全是 ...

  8. 使用 STL 辅助解决算法问题

    不要重复制造轮子,而且你造的轮子未必比得上别人的: <numeric>⇒ accumulate,累积容器中区间的和,可以指定初值: 为什么 STL 中的容器和算法一定关于区间的操作一定是左 ...

  9. 【Codeforces Round #442 (Div. 2) A】Alex and broken contest

    [链接] 我是链接,点我呀:) [题意] 在这里输入题意 [题解] 注意是所有的名字里面,只出现了其中某一个名字一次. [代码] #include <bits/stdc++.h> usin ...

  10. 20160206.CCPP体系具体解释(0016天)

    代码片段(01):.指针.c+02.间接赋值.c 内容概要:内存 ///01.指针 #include <stdio.h> #include <stdlib.h> //01.取地 ...