303876: CF747C. Servers
Memory Limit:256 MB
Time Limit:2 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
Servers
题意翻译
一共有 n 个服务器,编号从 1 到 n,有 q 个任务; 每个任务在 t[i] 秒的时间收到,需要 k[i] 台服务器,每台会占用 d[i] 秒的时间; 问题:当每个任务到达时,是否有足够的机器完成任务; 如果可以完成,则选择序号最小的机器,输出机器的序号和; 如果不能完成,则输出 -1。题目描述
There are $ n $ servers in a laboratory, each of them can perform tasks. Each server has a unique id — integer from $ 1 $ to $ n $ . It is known that during the day $ q $ tasks will come, the $ i $ -th of them is characterized with three integers: $ t_{i} $ — the moment in seconds in which the task will come, $ k_{i} $ — the number of servers needed to perform it, and $ d_{i} $ — the time needed to perform this task in seconds. All $ t_{i} $ are distinct. To perform the $ i $ -th task you need $ k_{i} $ servers which are unoccupied in the second $ t_{i} $ . After the servers begin to perform the task, each of them will be busy over the next $ d_{i} $ seconds. Thus, they will be busy in seconds $ t_{i},t_{i}+1,...,t_{i}+d_{i}-1 $ . For performing the task, $ k_{i} $ servers with the smallest ids will be chosen from all the unoccupied servers. If in the second $ t_{i} $ there are not enough unoccupied servers, the task is ignored. Write the program that determines which tasks will be performed and which will be ignored.输入输出格式
输入格式
The first line contains two positive integers $ n $ and $ q $ ( $ 1<=n<=100 $ , $ 1<=q<=10^{5} $ ) — the number of servers and the number of tasks. Next $ q $ lines contains three integers each, the $ i $ -th line contains integers $ t_{i} $ , $ k_{i} $ and $ d_{i} $ ( $ 1<=t_{i}<=10^{6} $ , $ 1<=k_{i}<=n $ , $ 1<=d_{i}<=1000 $ ) — the moment in seconds in which the $ i $ -th task will come, the number of servers needed to perform it, and the time needed to perform this task in seconds. The tasks are given in a chronological order and they will come in distinct seconds.
输出格式
Print $ q $ lines. If the $ i $ -th task will be performed by the servers, print in the $ i $ -th line the sum of servers' ids on which this task will be performed. Otherwise, print -1.
输入输出样例
输入样例 #1
4 3
1 3 2
2 2 1
3 4 3
输出样例 #1
6
-1
10
输入样例 #2
3 2
3 2 3
5 1 2
输出样例 #2
3
3
输入样例 #3
8 6
1 3 20
4 2 1
6 5 5
10 1 1
15 3 6
21 8 8
输出样例 #3
6
9
30
-1
15
36