CF1297F.Movie Fan
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
The first line contains an integer t ( 1≤t≤104 ) — the number of test cases in the input. The following are descriptions of the t test cases.
The first line of each test case contains two integers n and m ( 1≤n≤2⋅105 , 1≤m≤109 ) — the number of movies and the maximum number of movies that Polycarp can view per day.
In the next n lines, the movies themselves are described, one per line, by a pair of integers ai , bi ( 1≤ai≤bi≤109 ) — the first and last airing days for the i -th movie.
It is guaranteed that the sum of the values n for all test cases in the input does not exceed 2⋅105 .
输入格式
Print t answers to given test cases in the order in which they appear in the input: the i -th answer should consist of two lines. Print the integer d in the first line of each test case answer:
- d=0 , if there is a schedule such that all movies are watched during airing,
- d>0 , if such a schedule does not exist — in this case, d is equal to the minimum value of maximum among all the watching "delays" after the end of airing.
In the second line of the answer to each test case, print n positive integers t1,t2,…,tn , where ti is the number of the day when Polycarp needs to watch the i -th movie in the optimal schedule.
If there are several answers, print any of them.
输出格式
无
输入输出样例
输入#1
3 7 2 1 2 1 3 2 2 2 3 1 1 2 3 1 2 5 3 1 1 1 1 1 1 1 1 1 1 6 1 13 13 31 31 25 25 12 12 14 14 10 10
输出#1
1 1 3 2 3 1 4 2 1 1 1 1 2 2 0 13 31 25 12 14 10