시간 제한메모리 제한제출정답맞힌 사람정답 비율
3.5 초 512 MB83350.000%

문제

We are going to build a new city: the Metropolis. The city is going to be built on an infinite square grid. The finished city will consist of n skyscrapers, numbered from 1 to n. Each skyscraper will occupy a different cell of the grid. At any moment during the construction, the cells that currently do not contain a skyscraper are called empty.

You are given the planned coordinates of the n skyscrapers. Your task is to find an order in which they can be built while satisfying the rules listed below.

  • The building crew has only one crane, so the Metropolis has to be constructed one skyscraper at a time.
  • The first skyscraper you build can be any one of the n planned skyscrapers.
  • Each subsequent skyscraper has to share a side or a corner with at least one of the previously built skyscrapers (so that it’s easier to align the new skyscraper to the grid properly).
  • When building a skyscraper, there has to be a way to deliver material to the construction site from the outside of Metropolis by only moving it through empty cells that share a side. In other words, there should be a path of side-adjacent empty cells that connects the cell that will contain the skyscraper to some cell (r, c) with |r| > 109 and/or |c| > 109.

If a solution exists, let’s denote the numbers of skyscrapers in the order in which they should be built by s1, . . . , sn. There are two types of subtasks:

  • Type 1: You may produce any valid order.
  • Type 2: You must find the order that maximizes sn. Among those, you must find the one that maximizes sn−1. And so on. In other words, you must find the valid order of building for which the sequence (sn, sn−1, . . . , s1) is lexicographically largest.

입력

The first line contains a single integer n (1 ≤ n ≤ 150, 000) – the number of skyscrapers.

The second line contains a single integer t (1 ≤ t ≤ 2) describing the type of the subtask as defined above.

Then, n lines follow. The i-th of these lines contains two space-separated integers ri and ci (|ri|, |ci| ≤ 109) denoting the coordinates of the cell containing skyscraper i.

It is guaranteed that no two skyscrapers coincide.

출력

If it is impossible to build the skyscrapers according to the given rules, print a single line containing the string “NO”.

Otherwise, print n + 1 lines. The first of these lines should contain the string “YES”. For each i, the i-th of the remaining n lines should contain a single integer si.

In subtasks with t = 1, if there are multiple valid orders, you may output any one of them.

서브태스크

번호배점제한
18

t = 1 and n ≤ 10

214

t = 1 and n ≤ 200

312

t = 1 and n ≤ 2, 000

417

t = 2 and n ≤ 2, 000

520

t = 1

610

t = 2, n ≤ 70, 000 and |ri|, |ci| ≤ 900 for each i

719

t = 2

예제 입력 1

3
2
0 0
0 1
0 2

예제 출력 1

YES
1
2
3

예제 입력 2

3
1
0 0
1 1
2 2

예제 출력 2

YES
2
3
1

예제 입력 3

2
1
0 0
0 2

예제 출력 3

NO

힌트

In the first example, there are three skyscrapers in a row. All of them can always be reached from outside the Metropolis, and there are four build orders which preserve connectivity:

  • 1, 2, 3
  • 2, 1, 3
  • 2, 3, 1
  • 3, 2, 1

Since t = 2, we must choose the first option.

In the second example, the only difference from the first example is that skyscraper 2 shares only corners with skyscrapers 1 and 3, the same set of orders as in the first sample is valid. Since t = 1, each of these answers is correct.

In the third example, the Metropolis is disconnected. We obviously can’t build that.

채점 및 기타 정보

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