[USACO08FEB] Hotel G

题目描述

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\leq n \leq 50,000)$,编号为 $1 \sim n$,开始都为空房,$m$ 表示以下有 $m$ 行操作 $(1\leq m < 50,000)$,以下每行先输入一个数 $i$ ,表示一种操作: 若 $i$ 为 $1$,表示查询房间,再输入一个数 $x$,表示在 $1,2,...,n$ 房间中找到长度为 $x$ 的连续空房,输出连续 $x$ 个房间中左端的房间号,尽量让这个房间号最小,若找不到长度为 $x$ 的连续空房,输出 $0$。若找得到,在这 $x$ 个空房间中住上人。 若 $i$ 为 $2$,表示退房,再输入两个数 $x,y$ 代表房间号 $x \sim x+y-1$ 退房,即让房间为空。 你需要对每个输入 $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