CF1239C.Queue in the Train
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
There are n seats in the train's car and there is exactly one passenger occupying every seat. The seats are numbered from 1 to n from left to right. The trip is long, so each passenger will become hungry at some moment of time and will go to take boiled water for his noodles. The person at seat i ( 1≤i≤n ) will decide to go for boiled water at minute ti .
Tank with a boiled water is located to the left of the 1 -st seat. In case too many passengers will go for boiled water simultaneously, they will form a queue, since there can be only one passenger using the tank at each particular moment of time. Each passenger uses the tank for exactly p minutes. We assume that the time it takes passengers to go from their seat to the tank is negligibly small.
Nobody likes to stand in a queue. So when the passenger occupying the i -th seat wants to go for a boiled water, he will first take a look on all seats from 1 to i−1 . In case at least one of those seats is empty, he assumes that those people are standing in a queue right now, so he would be better seating for the time being. However, at the very first moment he observes that all seats with numbers smaller than i are busy, he will go to the tank.
There is an unspoken rule, that in case at some moment several people can go to the tank, than only the leftmost of them (that is, seating on the seat with smallest number) will go to the tank, while all others will wait for the next moment.
Your goal is to find for each passenger, when he will receive the boiled water for his noodles.
输入格式
The first line contains integers n and p ( 1≤n≤100000 , 1≤p≤109 ) — the number of people and the amount of time one person uses the tank.
The second line contains n integers t1,t2,…,tn ( 0≤ti≤109 ) — the moments when the corresponding passenger will go for the boiled water.
输出格式
Print n integers, where i -th of them is the time moment the passenger on i -th seat will receive his boiled water.
输入输出样例
输入#1
5 314 0 310 942 628 0
输出#1
314 628 1256 942 1570
说明/提示
Consider the example.
At the 0 -th minute there were two passengers willing to go for a water, passenger 1 and 5 , so the first passenger has gone first, and returned at the 314 -th minute. At this moment the passenger 2 was already willing to go for the water, so the passenger 2 has gone next, and so on. In the end, 5 -th passenger was last to receive the boiled water.