CF978G.Petya's Exams
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Petya studies at university. The current academic year finishes with n special days. Petya needs to pass m exams in those special days. The special days in this problem are numbered from 1 to n .
There are three values about each exam:
- si — the day, when questions for the i -th exam will be published,
- di — the day of the i -th exam ( si<di ),
- ci — number of days Petya needs to prepare for the i -th exam. For the i -th exam Petya should prepare in days between si and di−1 , inclusive.
There are three types of activities for Petya in each day: to spend a day doing nothing (taking a rest), to spend a day passing exactly one exam or to spend a day preparing for exactly one exam. So he can't pass/prepare for multiple exams in a day. He can't mix his activities in a day. If he is preparing for the i -th exam in day j , then si≤j<di .
It is allowed to have breaks in a preparation to an exam and to alternate preparations for different exams in consecutive days. So preparation for an exam is not required to be done in consecutive days.
Find the schedule for Petya to prepare for all exams and pass them, or report that it is impossible.
输入格式
The first line contains two integers n and m (2≤n≤100,1≤m≤n) — the number of days and the number of exams.
Each of the following m lines contains three integers si , di , ci (1≤si<di≤n,1≤ci≤n) — the day, when questions for the i -th exam will be given, the day of the i -th exam, number of days Petya needs to prepare for the i -th exam.
Guaranteed, that all the exams will be in different days. Questions for different exams can be given in the same day. It is possible that, in the day of some exam, the questions for other exams are given.
输出格式
If Petya can not prepare and pass all the exams, print -1. In case of positive answer, print n integers, where the j -th number is:
-
(m+1) , if the j -th day is a day of some exam (recall that in each day no more than one exam is conducted),
-
zero, if in the j -th day Petya will have a rest,
-
i ( 1≤i≤m ), if Petya will prepare for the i -th exam in the day j (the total number of days Petya prepares for each exam should be strictly equal to the number of days needed to prepare for it).Assume that the exams are numbered in order of appearing in the input, starting from 1 .
If there are multiple schedules, print any of them.
输入输出样例
输入#1
5 2 1 3 1 1 5 1
输出#1
1 2 3 0 3
输入#2
3 2 1 3 1 1 2 1
输出#2
-1
输入#3
10 3 4 7 2 1 10 3 8 9 1
输出#3
2 2 2 1 1 0 4 3 4 4
说明/提示
In the first example Petya can, for example, prepare for exam 1 in the first day, prepare for exam 2 in the second day, pass exam 1 in the third day, relax in the fourth day, and pass exam 2 in the fifth day. So, he can prepare and pass all exams.
In the second example, there are three days and two exams. So, Petya can prepare in only one day (because in two other days he should pass exams). Then Petya can not prepare and pass all exams.