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.
PROGRAM NAME: milk2
INPUT FORMAT
Line 1: |
The single integer |
Lines 2..N+1: |
Two non-negative integers less than 1,000,000, respectively the starting and ending time in seconds after 0500 |
SAMPLE INPUT (file milk2.in)
3
300 1000
700 1200
1500 2100
OUTPUT FORMAT
A single line with two integers that represent the longest continuous time of milking and the longest idle time.
SAMPLE OUTPUT (file milk2.out)
900 300
代码:
1 #include <iostream> 2 #include <cstdio> 3 #include <algorithm> 4 #include <cstring> 5 using namespace std; 6 int a[1000010]; 7 int main() 8 { 9 freopen("milk2.in","r",stdin); 10 freopen("milk2.out","w",stdout); 11 int t; 12 cin>>t; 13 long long n,m; 14 long long x,y; 15 memset(a,0,sizeof(a)); 16 n=1e6+10; 17 m=0; 18 while(t--){ 19 cin>>x>>y; 20 for(int i=x;i<y;i++){ 21 a[i]++; 22 } 23 n=min(n,x); 24 m=max(m,y); 25 } 26 int cnt=0;//lianxuyouren 27 int sum=0;//maxlianxuyouren 28 int ans=0;//lianxumeiren 29 int s=0;//maxlianxumeiren 30 for(int i=n;i<m;i++){ 31 if(a[i]) {cnt++;s=max(ans,s);ans=0;} 32 else {sum=max(sum,cnt);cnt=0;ans++;} 33 } 34 sum=max(sum,cnt); 35 s=max(ans,s); 36 cout<<sum<<" "<<s<<endl; 37 return 0; 38 }