/ OPS / 题库 /

Milking Cows

Milking Cows

#描述#
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 no cows were being milked.

#格式#
##输入格式##
There are more than one case,every case has the format as follows:
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
The input ends with a single integer 0.

##输出格式##
A single line with two integers that represent the longest continuous time of milking and the longest idle time.

#样例1#
##样例输入1##

3
300 1000
700 1200
1500 2100
0

##样例输出1##

900 300

#限制#
1000ms
32768KB

#提示#

#来源#

信息

ID
1213
难度
5
分类
category1 点击显示
标签
递交数
0
已通过
0
通过率
?
上传者