Tea Queue
该比赛已结束,您无法在比赛模式下递交该题目。您可以点击“在题库中打开”以普通模式查看和递交本题。
Tea Queue
题面翻译
题面:
有n个学生排队喝茶。
第i 个学生在的时刻来排队。如果在同一时刻有多名学生来排队,那么id 较大的学生就会在id 较小的学生之后。
队列中的学生的行为如下:如果学生面前没有人排队,那么他就用茶一秒钟,然后出队。否则会等待。如果第i 个学生在的开始,仍然喝不到茶(队列前面有人),那么他就离开队伍了。
输入:
第一行:t,数据组数
每组数据的开头输入n,学生数
接下来n行每行为,
输出:
对于每组数据输出一行n个数,每个数表示这个学生喝到茶的时间,如果不能喝到就输出0
Translated by @@Lyrance
题目描述
Recently students from city S moved to city P to attend a programming camp.
They moved there by train. In the evening, all students in the train decided that they want to drink some tea. Of course, no two people can use the same teapot simultaneously, so the students had to form a queue to get their tea.
-th student comes to the end of the queue at the beginning of -th second. If there are multiple students coming to the queue in the same moment, then the student with greater index comes after the student with lesser index. Students in the queue behave as follows: if there is nobody in the queue before the student, then he uses the teapot for exactly one second and leaves the queue with his tea; otherwise the student waits for the people before him to get their tea. If at the beginning of -th second student still cannot get his tea (there is someone before him in the queue), then he leaves the queue without getting any tea.
For each student determine the second he will use the teapot and get his tea (if he actually gets it).
输入格式
The first line contains one integer — the number of test cases to solve ( ).
Then test cases follow. The first line of each test case contains one integer ( ) — the number of students.
Then lines follow. Each line contains two integer , ( ) — the second -th student comes to the end of the queue, and the second he leaves the queue if he still cannot get his tea.
It is guaranteed that for every condition holds.
The sum of over all test cases doesn't exceed .
Note that in hacks you have to set .
输出格式
For each test case print integers. -th of them must be equal to the second when -th student gets his tea, or if he leaves without tea.
样例 #1
样例输入 #1
2
2
1 3
1 4
3
1 5
1 1
2 3
样例输出 #1
1 2
1 0 2
提示
The example contains tests:
- During -st second, students and come to the queue, and student gets his tea. Student gets his tea during -nd second.
- During -st second, students and come to the queue, student gets his tea, and student leaves without tea. During -nd second, student comes and gets his tea.