#723
Unrated
Forklift Certified
시간 제한
2s
메모리 제한
1024MB
제출
0
정답
0
맞힌 사람
0
정답 비율
0.0%

문제

Farmer John is training to become forklift certified! As part of his training, he needs to clear NN (1N1051 \le N \le 10^5) boxes, conveniently labeled 11 through NN, from an old warehouse.

The boxes can be modeled as axis-aligned rectangles in a 2-dimensional plane, where the +x+x-direction is east and the +y+y-direction is north. Box ii has its southwest corner at (xi1,yi1)(x_{i1},y_{i1}) and its northeast corner at (xi2,yi2)(x_{i2},y_{i2}). All coordinates are integers in the range [1,2N][1, 2N], and no two corners from two different rectangles share the same xx or yy coordinate. All boxes have a non-zero area, and no two boxes intersect.

Farmer John plans to remove the boxes one at a time out of the southwest entrance of the warehouse. However, he can only remove a box if no part of any other box lies both south and west of the box's northeast corner due to physical limitations of the forklift.

An example with N=4N=4 is shown below. To remove box 44, there cannot be any other boxes in the shaded region. Boxes 22 and 33 prevent box 44 from being removed, but box 11 does not.

Help Farmer John decide how to remove all the boxes! Your code should operate in two separate modes, defined by an integer flag MM: Mode 1 (M=1M = 1): Generate a permutation of 1,,N1, \dots, N specifying a valid box removal order. If there are multiple valid orders, find any. It can be proven that such an order always exists.Mode 2 (M=2M = 2): For each k=1,,Nk = 1, \dots, N, output 1\texttt{1} if Farmer John can remove box kk if boxes 1,,k11, \dots, k - 1 have already been removed, and 0\texttt{0} otherwise.

입력

Each input consists of TT (1T101 \le T \le 10) independent test cases. It is guaranteed that the sum of all NN within each input does not exceed 51055 \cdot 10^5.

The first line of input contains TT and MM. (Note that MM is the same for each test case.) Each test case is then formatted as follows: The first line contains a single integer NN.Each of the next NN lines contains four space-separated integers xi1,yi1,xi2,yi2x_{i1}, y_{i1}, x_{i2}, y_{i2}: the locations of the southwest and northeast corners of box ii.

출력

For each test case: If M=1M = 1, output a single line with NN space-separated integers, where the jj-th integer is the label of the jj-th box to remove.If M=2M = 2, output a single line with a binary string of NN characters specifying the answer for each k=1,,Nk = 1, \dots, N.

예제 입력 1

2 1
4
1 6 2 8
6 2 7 3
3 1 4 7
5 4 8 5
3
1 5 3 6
4 1 5 2
2 3 6 4

예제 출력 1

1 3 2 4
2 3 1

예제 입력 2

2 2
4
1 6 2 8
6 2 7 3
3 1 4 7
5 4 8 5
3
1 5 3 6
4 1 5 2
2 3 6 4

예제 출력 2

1011
011

점수

Inputs 3-5: M=1M = 1, N1000N\le 1000.Input 6: M=2M = 2, N1000N \le 1000.Inputs 7-13: M=1M = 1, no additional constraints.Inputs 14-16: M=2M = 2, no additional constraints.

코드 제출

코드를 제출하려면 로그인이 필요합니다.

로그인
내 제출
제출 내역이 없습니다.
맞은 사람
아직 맞은 사람이 없습니다.
난이도 투표
Unrated0명 투표
로그인 후 AC 받으면 투표할 수 있습니다.
전체 제출
제출 내역이 없습니다.