#Lutece0207. Hotel

Hotel

Migrated from Lutece 207 Hotel

All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.

Description

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 NN (1N50,0001\leq N\leq 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 DiD_i (1DiN1\leq D_i\leq N) and approach the front desk to check in. Each group ii requests a set of DiD_i contiguous rooms from Canmuu, the moose staffing the counter. He assigns them some set of consecutive room numbers rr+Di1r\cdots r+D_i-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 ii has the parameters XiX_i and DiD_i which specify the vacating of rooms XiXi+Di1X_i\cdots X_i +D_i-1 (1XiNDi+11\leq X_i\leq N-D_i+1). Some (or all) of those rooms might be empty before the checkout.

Your job is to assist Canmuu by processing MM (1M<50,0001\leq M < 50,000) checkin/checkout requests. The hotel is initially unoccupied.

Input

  • Line 11: Two space-separated integers: NN and MM
  • Lines 2M+12\cdots M+1: Line i+1i+1 contains request expressed as one of two possible formats:
    1. Two space separated integers representing a check-in request: 11 and DiD_i
    2. Three space-separated integers representing a check-out: 22, XiX_i, and DiD_i

Output

For each check-in request, output a single line with a single integer rr, the first room in the contiguous sequence of rooms to be occupied. If the request cannot be satisfied, output 00.

Samples

10 6
1 3
1 3
1 3
1 3
2 5 5
1 6
1
4
7
0
5

Note

The data used in this problem is unofficial data prepared by standy. So any mistake here does not imply mistake in the offcial judge data.

Resources

USACO 2008 February Gold