CF967A.Mind the Gap
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
These days Arkady works as an air traffic controller at a large airport. He controls a runway which is usually used for landings only. Thus, he has a schedule of planes that are landing in the nearest future, each landing lasts 1 minute.
He was asked to insert one takeoff in the schedule. The takeoff takes 1 minute itself, but for safety reasons there should be a time space between the takeoff and any landing of at least s minutes from both sides.
Find the earliest time when Arkady can insert the takeoff.
输入格式
The first line of input contains two integers n and s ( 1≤n≤100 , 1≤s≤60 ) — the number of landings on the schedule and the minimum allowed time (in minutes) between a landing and a takeoff.
Each of next n lines contains two integers h and m ( 0≤h≤23 , 0≤m≤59 ) — the time, in hours and minutes, when a plane will land, starting from current moment (i. e. the current time is 0 0 ). These times are given in increasing order.
输出格式
Print two integers h and m — the hour and the minute from the current moment of the earliest time Arkady can insert the takeoff.
输入输出样例
输入#1
6 60 0 0 1 20 3 21 5 0 19 30 23 40
输出#1
6 1
输入#2
16 50 0 30 1 20 3 0 4 30 6 10 7 50 9 30 11 10 12 50 14 30 16 10 17 50 19 30 21 10 22 50 23 59
输出#2
24 50
输入#3
3 17 0 30 1 0 12 0
输出#3
0 0
说明/提示
In the first example note that there is not enough time between 1:20 and 3:21, because each landing and the takeoff take one minute.
In the second example there is no gaps in the schedule, so Arkady can only add takeoff after all landings. Note that it is possible that one should wait more than 24 hours to insert the takeoff.
In the third example Arkady can insert the takeoff even between the first landing.