Problem D: Longest Nap |
As you may already know, there are professors very busy with a filled schedule of work during the day. Your professor, let's call him Professor P, is a bit lazy and wants to take a nap during the day, but as his schedule is very busy, he doesn't have a lot of chances of doing this. He would REALLY like, however, to take one nap every day. Because he'll take just one nap, he wants to take the longest nap that it's possible given his schedule. He decided to write a program to help him in this task but, as we said, Professor P is very lazy. So, he finally decided that YOU must write the program!
The input will consist on an arbitrary number of test cases, each test case represents one day. The first line of each set contains a positive integer s (not greater than 100) representing the number of scheduled appointments during that day. In the next s lines there are the appointments in the following format:
time1 time2 appointmentWhere time1 represents the time which the appointment starts and time2 the time it ends. All times will be in the hh:mm format, time1 will always be strictly less than time2, they will be separated by a single space and all times will be greater than or equal to 10:00 and less than or equal to 18:00. So, your response must be in this interval as well (i.e. no nap can start before 10:00 and last after 18:00). The appointment can be any sequence of characters, but will always be in the same line. You can assume that no line will be longer than 255 characters, that 10 <= hh <= 18 and that 0 <= mm < 60. You CAN'T assume, however, that the input will be in any specific order. You must read the input until you reach the end of file.
For each test case, you must print the following line:
Day #d: the longest nap starts at hh:mm and will last for [H hours and] M minutes.Where d stands for the number of the test case (starting from 1) and hh:mm is the time when the nap can start. To display the duration of the nap, follow these simple rules:
If there is more than one longest nap with the same duration, print the earliest one. You can assume that there won't be a day all busy (i.e. you may assume that there will be at least one possible nap).
4 10:00 12:00 Lectures 12:00 13:00 Lunch, like always. 13:00 15:00 Boring lectures... 15:30 17:45 Reading 4 10:00 12:00 Lectures 12:00 13:00 Lunch, just lunch. 13:00 15:00 Lectures, lectures... oh, no! 16:45 17:45 Reading (to be or not to be?) 4 10:00 12:00 Lectures, as everyday. 12:00 13:00 Lunch, again!!! 13:00 15:00 Lectures, more lectures! 15:30 17:15 Reading (I love reading, but should I schedule it?) 1 12:00 13:00 I love lunch! Have you ever noticed it? :)
Day #1: the longest nap starts at 15:00 and will last for 30 minutes. Day #2: the longest nap starts at 15:00 and will last for 1 hours and 45 minutes. Day #3: the longest nap starts at 17:15 and will last for 45 minutes. Day #4: the longest nap starts at 13:00 and will last for 5 hours and 0 minutes.
#include<cstdio> #include<iostream> #include<string> #include<vector> #include<map> #include<set> #include<algorithm> #include<cmath> #include <cstring> #include <queue> using namespace std; #define eps 1e-20 #define MAXN 150 #define outstars cout << "*********" << endl; struct timer { int st; int en; }tt[MAXN]; bool cmp(const timer &a ,const timer &b) { if(a.st == b.st)return a.en > b.en; return a.st < b.st; } char s[300]; int main() { int Case = 1; int a; int tah , tam , tbh , tbm; int n; while(scanf("%d",&n)!=EOF) { int maxt = 0; int maxs = 600; for(int i = 0 ; i < n ; i ++) { scanf("%d:%d %d:%d",&tah , &tam , &tbh , &tbm); gets(s); tt[i].st = tah * 60 + tam; tt[i].en = tbh * 60 + tbm; } sort(tt , tt + n , cmp); int endtime = tt[0].en; a = tt[0].st - 600; if(a > maxt) { maxt = a; maxs = 600; } for(int i = 1 ; i < n ; i++) { if(tt[i].st == tt[i - 1].st)continue; a = tt[i].st - endtime; if(a > maxt) { maxt = a; maxs = tt[i - 1].en; } if(tt[i].en > endtime)endtime = tt[i].en; } a = 18 * 60 - endtime; if(a > maxt) { maxt = a; maxs = endtime; } if(maxt >= 60)printf("Day #%d: the longest nap starts at %02d:%02d and will last for %d hours and %d minutes.\n" , Case++ , maxs / 60 , maxs % 60 , maxt / 60 , maxt % 60); else printf("Day #%d: the longest nap starts at %02d:%02d and will last for %d minutes.\n",Case++ , maxs / 60 , maxs % 60 , maxt); } return 0; } /* */