Finally! Vasya have come of age and that means he can finally get a passport! To do it, he needs to visit the passport office, but it’s not that simple. There’s only one receptionist at the passport office and people can queue up long before it actually opens. Vasya wants to visit the passport office tomorrow.
He knows that the receptionist starts working after
Vasya also knows that exactly n visitors would come tomorrow. For each visitor Vasya knows the point of time when he would come to the passport office. Each visitor queues up and doesn’t leave until he was served. If the receptionist is free when a visitor comes (in particular, if the PRevious visitor was just served and the queue is empty), the receptionist begins to serve the newcomer immediately.
For each visitor, the point of time when he would come to the passport office is positive. Vasya can come to the office at the time zero (that is, at midnight) if he needs so, but he can come to the office only at integer points of time. If Vasya arrives at the passport office at the same time with several other visitors, he yields to them and stand in the queue after the last of them.
Vasya wants to come at such point of time that he will be served by the receptionist, and he would spend the minimum possible time in the queue. Help him!
The first line contains three integers: the point of time when the receptionist begins to work
All times are set in minutes and do not exceed
Print single non-negative integer — the point of time when Vasya should arrive at the passport office. If Vasya arrives at the passport office at the same time with several other visitors, he yields to them and queues up the last. If there are many answers, you can print any of them.
input
10 15 2210 13output
12input
8 17 343 4 5 8output
2Note
In the first example the first visitor comes exactly at the point of time when the receptionist begins to work, and he is served for two minutes. At 12 minutes after the midnight the receptionist stops serving the first visitor, and if Vasya arrives at this moment, he will be served immediately, because the next visitor would only come at 13 minutes after midnight.
In the second example, Vasya has to come before anyone else to be served.
Vasya 準備排隊去辦理護照。已知只有一個窗口在提供服務,且提供服務的時間在
貌似這是我打 CF 以來經歷的最坑的 B 題。
首先進行預處理,已知每個人進入隊列的時間 s[i] ,當不考慮 Vasya 排隊的情況,每人結束服務的時間 e[i] 可通過前一個人的結束時間獲得。若前一個人的結束時間 e[i-1]+1 >= s[i] ,則當前這個人的結束時間記為 e[i] = e[i-1] + t 。否則可以認為在 e[i-1]+1 時刻隊列為空, Vasya 在此時來辦理業務無需等待。
在處理完 e[] 數組后,嘗試在每一個人開始時間前 1 時刻 s[i]-1 讓 Vasya 去排隊,計算他需要等待(此處加上了他辦理業務的用時)的時間為 e[i]-(s[i]-1)+1 = e[i]-s[i]+2 。取最小的等待時間對應的 s[i]-1 即可。
綜合上述想法,仍然有 n=0 的情況以及在處理完最后一個人的業務后仍有充裕時間供 Vasya 辦理業務的情況。特判。
新聞熱點
疑難解答