시간 제한메모리 제한제출정답맞힌 사람정답 비율
0.6 초 1024 MB75191527.273%

문제

Your task is to determine one possible binary array A of length N that abides by M given constraints of the form:

  • (l, r, k, value) - the k-th smallest element in subarray A[l..r] is value (0 ≤ l ≤ r < N, 1 ≤ k ≤ r - l + 1, 0 ≤ value ≤ 1). Please note that array A is 0-indexed.

입력

The first line of input contains two integers N and M (1 ≤ N ≤ 5 000, 1 ≤ M ≤ 10 000) - the length of array A and the number of constraints.

The next M lines describe the constraints. Each line contains four integers li, ri, ki, valuei, describing the i-th constraint.

출력

The first line of the output contains N integers - one possible binary array A. If there are several that abide by all M constraints you may output any of them. If there is no such array you must instead output the single integer -1.

서브태스크

번호배점제한
17

1 ≤ N ≤ 18, 1 ≤ M ≤ 200

213

1 ≤ N ≤ 5 000, 1 ≤ M ≤ 10 000, for all constraints k = 1 holds

325

1 ≤ N ≤ 5 000, 1 ≤ M ≤ 10 000, for all constraints k = 1 or k = (r - l + 1) holds

455

1 ≤ N ≤ 5 000, 1 ≤ M ≤ 10 000

예제 입력 1

4 5
0 1 2 1
0 2 2 0
2 2 1 0
0 1 1 0
1 2 1 0

예제 출력 1

0 1 0 0

힌트

There are several binary arrays that abide by all the constraints. One of them is 0 1 0 0 because:

  1. The 2-nd smallest element among 0 1 0 0 is 1.
  2. The 2-nd smallest element among 0 1 0 0 is 0.
  3. The 1-st smallest element among 0 1 0 0 is 0.
  4. The 1-st smallest element among 0 1 0 0 is 0.
  5. The 1-st smallest element among 0 1 0 0 is 0.

채점 및 기타 정보

  • 예제는 채점하지 않는다.