시간 제한메모리 제한제출정답맞힌 사람정답 비율
2 초 512 MB8214814.815%

문제

Gleb is a famous competitive programming teacher from Innopolis. He is planning a trip to N programming camps in the nearest future. Each camp will be held in a different country. For each of them, Gleb needs to apply for a visa.

For each of these trips Gleb knows three integers: the number of the first day of the trip si, the length of the trip in days leni, and the number of days ti this country’s consulate will take to process a visa application and stick a visa in a passport. Gleb has P (1 ≤ P ≤ 2) valid passports and is able to decide which visa he wants to put in which passport.

For each trip, Gleb will have a flight to that country early in the morning of the day si and will return back late in the evening of the day si + leni − 1.

To apply for a visa on the day d, Gleb needs to be in Innopolis in the middle of this day. So he can’t apply for a visa while he is on a trip, including the first and the last days. If a trip starts the next day after the end of the other one, Gleb can’t apply for a visa between them as well. The earliest Gleb can apply for a visa is day 1.

After applying for a visa of country i on day d, Gleb will get his passport back in the middle of the day d + ti. Consulates use delivery services, so Gleb can get his passport back even if he is not in Innopolis on this day. Gleb can apply for another visa on the same day he received his passport back, if he is in Innopolis this day.

Gleb will not be able to start his trip on day si if he doesn’t has a passport with a visa for the corresponding country in the morning of day si. In particular, the passport should not be in another country’s consulate for visa processing.

Help Gleb to decide which visas he needs to receive in which passport, and when he should apply for each visa.

입력

In the first line of the input there are two integers N (1 ≤ N ≤ 22) and P (1 ≤ P ≤ 2)—the number of trips and the number of passports Gleb has, respectively.

The next N lines describe Gleb’s trips. Each line contains three positive integers si, leni, ti (1 ≤ si, leni, ti ≤ 109)—the first day of the trip, the length of the trip and number of days the consulate of this country needs to process a visa application. It is guaranteed that no two trips intersect.

출력

If it is impossible to get all visas on time, just print “NO” (quotes for clarity). Otherwise, print “YES” and N lines describing trips. For each trip, first print number of the passport Gleb should put this country’s visa in, and then print number of the day he should apply for it. Print trips in the same order as they appear in the input. Days are numbered from 1, starting with tomorrow—the first day you can apply for a visa. Passports are numbered from 1 to P.

서브태스크 1 (5점)

  • N ≤ 2
  • si, leni, ti ≤ 100
  • ti = tj
  • P = 1

서브태스크 2 (8점)

  • N ≤ 10
  • si, leni, ti ≤ 100
  • ti = tj
  • P = 1

서브태스크 3 (7점)

  • N ≤ 10
  • si, leni, ti ≤ 100
  • ti = tj

서브태스크 4 (12점)

  • N ≤ 16
  • si, leni, ti ≤ 100
  • P = 1

서브태스크 5 (13점)

  • N ≤ 16
  • si, leni, ti ≤ 100

서브태스크 6 (15점)

  • N ≤ 18
  • si, leni, ti ≤ 107
  • P = 1

서브태스크 7 (15점)

  • N ≤ 18
  • si, leni, ti ≤ 107

서브태스크 8 (15점)

  • N ≤ 20

서브태스크 9 (10점)

  • N ≤ 22

예제 입력 1

2 1
3 1 1
6 1 1

예제 출력 1

YES
1 1
1 4

예제 입력 2

3 1
13 2 2
7 3 1
19 3 4

예제 출력 2

YES
1 10
1 1
1 2

예제 입력 3

7 2
15 1 1
14 1 1
18 1 1
21 1 1
9 4 6
22 2 5
5 4 3

예제 출력 3

YES
2 13
1 1
1 16
1 19
1 2
2 16
2 1

예제 입력 4

3 1
7 3 1
13 2 3
19 3 4

예제 출력 4

NO

힌트

Examples with answer “YES” are depicted below.

Each cell of the stripe represents a single day. Rectangles represent trips, each trip starts in the morning and ends in the evening. Rectangles with angled corners represent visa applications. Each application starts in the middle of a day and ends ti days after. The trip and the visa application for the same country have the same color.

In examples with two passports, visa applications and trips depicted above the time stripe are made using the first passport, visa applications and trips depicted below the time stripe are made using the second passport.

채점 및 기타 정보

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