Three farmers rise at 5 am each morning and head for the barn to milk three cows. The first farmer begins milking his cow at time 300 (measured in seconds after 5 am) and ends at time 1000. The second farmer begins at time 700 and ends at time 1200. The third farmer begins at time 1500 and ends at time 2100. The longest continuous time during which at least one farmer was milking a cow was 900 seconds (from 300 to 1200). The longest time no milking was done, between the beginning and the ending of all milking, was 300 seconds (1500 minus 1200).
Your job is to write a program that will examine a list of beginning and ending times for N (1 <= N <= 5000) farmers milking N cows and compute (in seconds):
The longest time interval at least one cow was milked.
The longest time interval (after milking starts) during which no cows were being milked.
Input
Line 1:
The single integer
Lines 2..N+1:
Two non-negative integers less than 1000000, the starting and ending time in seconds after 0500
Output
A single line with two integers that represent the longest continuous time of milking and the longest idle time.
Sample Input
3
300 1000
700 1200
1500 2100
Sample Output
900 300
解题思路
把每对数据看成区间的两个端点,判断前后两个区间的重叠情况(有交集或收尾连接),再进行操作(如果有交集或收尾连接则合并成一个区间)。
The longest time interval at least one cow was milked就是处理完之后每个区间长度中最长的那一个。
The longest time interval (after milking starts) during which no cows were being milked就是处理完之后每两个区间之间间距中最长的那一个。