#P3580. [POI 2014] ZAL-Freight
[POI 2014] ZAL-Freight
题目描述
The train stations in Upper Bytown and Lower Bytown are connected with a single track rail link.
It takes the train minutes to travel between them in either direction.
However, the trains departing a station have to be spaced at least one minute apart.
Moreover, at all times, all the trains on the rail link have to go in the same direction.
According to the timetable at our disposal, cargo trains destined for Lower Bytown are to pass through the Upper Bytown. They are to be loaded with goods in Lower Bytown and then return to Upper Bytown. For simplicity, we assume that loading the goods on the train takes virtually no time.
We are to determine the minimum possible time of the last train returning to Upper Bytown.
有两个城镇,从A到B需要的时间为S,然后有N辆列车需要从A到B再回来,任何时刻铁路上只能有向着同一个方向前进的列车,然后每辆列车有一个从A出发的最早出站时间,问所有列车全部回到A站的最早时间
输入格式
The first line of the standard input contains two integers , (, ), separated by a single space, that specify the number of trains and the one-way travel time respectively.
The second line contains integers (),separated by a single space, that specify the arrival times of successive trains at the Upper Bytown station.
输出格式
Your program should print out a single line with a single integer to the standard output:
the minimum possible time of the last train returning to Upper Bytown.
3 4
1 8 11
20