PAT1006. Sign In and Sign Out

At the beginning of every day, the first person who signs in the computer room will unlock the door, and the last one who signs out will lock the door. Given the records of signing in‘s and out‘s, you are supposed to find the ones who have unlocked and locked the door on that day.

Input Specification:

Each input file contains one test case. Each case contains the records for one day. The case starts with a positive integer M, which is the total number of records, followed by M lines, each in the format:

ID_number Sign_in_time Sign_out_time

where times are given in the format HH:MM:SS, and ID number is a string with no more than 15 characters.

Output Specification:

For each test case, output in one line the ID numbers of the persons who have unlocked and locked the door on that day. The two ID numbers must be separated by one space.

Note: It is guaranteed that the records are consistent. That is, the sign in time must be earlier than the sign out time for each person, and there are no two persons sign in or out at the same moment.

Sample Input:

3
CS301111 15:30:28 17:00:10
SC3021234 08:00:00 11:25:25
CS301133 21:45:00 21:58:40

Sample Output:

SC3021234 CS301133
思路:将其进行映射成一数字,然后比较数字的大小。

 1 #include<cstdio>
 2
 3 struct record
 4 {
 5     char Id[20];
 6     int start;
 7     int end;
 8 }record[1000];
 9 const int Inf=0x3fffffff;
10
11 int  Change(int hour,int min,int sec)
12 {
13     return hour*3600+min*60+sec;
14 }
15 int main(int argc, char *argv[])
16 {
17     int M;
18     int Max=-1,Min=Inf;
19     int maxpt,minpt;
20     scanf("%d",&M);
21     for(int i=0;i<M;i++)
22     {
23         scanf("%s",record[i].Id);
24         int hour,min,sec;
25         scanf("%d:%d:%d",&hour,&min,&sec);
26         record[i].start=Change(hour,min,sec);
27         scanf("%d:%d:%d",&hour,&min,&sec);
28         record[i].end=Change(hour,min,sec);
29         if(record[i].start<Min)
30         {
31             minpt=i;
32             Min=record[i].start;
33         }
34         if(record[i].end>Max)
35         {
36             maxpt=i;
37             Max=record[i].end;
38         }
39     }
40     printf("%s %s\n",record[minpt].Id,record[maxpt].Id);
41     return 0;
42 }

时间: 2024-10-12 16:43:40

PAT1006. Sign In and Sign Out的相关文章

pat1006. Sign In and Sign Out (25)

1006. Sign In and Sign Out (25) 时间限制 400 ms 内存限制 65536 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue At the beginning of every day, the first person who signs in the computer room will unlock the door, and the last one who signs out will lock the door

PAT 1006. Sign In and Sign Out (25)

1006. Sign In and Sign Out (25) At the beginning of every day, the first person who signs in the computer room will unlock the door, and the last one who signs out will lock the door. Given the records of signing in's and out's, you are supposed to f

1006. Sign In and Sign Out (25)——PAT (Advanced Level) Practise

题目信息: 1006. Sign In and Sign Out (25) 时间限制 400 ms 内存限制 32000 kB 代码长度限制 16000 B 判题程序 Standard 作者 CHEN, Yue At the beginning of every day, the first person who signs in the computer room will unlock the door, and the last one who signs out will lock th

1006. Sign In and Sign Out (25)(技巧性模拟)

At the beginning of every day, the first person who signs in the computer room will unlock the door, and the last one who signs out will lock the door. Given the records of signing in's and out's, you are supposed to find the ones who have unlocked a

1006. Sign In and Sign Out

At the beginning of every day, the first person who signs in the computer room will unlock the door, and the last one who signs out will lock the door. Given the records of signing in's and out's, you are supposed to find the ones who have unlocked a

1006. Sign In and Sign Out (25)

题目如下: At the beginning of every day, the first person who signs in the computer room will unlock the door, and the last one who signs out will lock the door. Given the records of signing in's and out's, you are supposed to find the ones who have unlo

A1006. Sign In and Sign Out (25)

At the beginning of every day, the first person who signs in the computer room will unlock the door, and the last one who signs out will lock the door. Given the records of signing in's and out's, you are supposed to find the ones who have unlocked a

1006.Sign in and Sign out(25)—PAT 甲级

At the beginning of every day, the first person who signs in the computer room will unlock the door, and the last one who signs out will lock the door. Given the records of signing in's and out's, you are supposed to find the ones who have unlocked a

PAT (Advanced Level) 1006. Sign In and Sign Out (25)

简单题. #include<iostream> #include<cstring> #include<cmath> #include<algorithm> #include<cstdio> #include<vector> using namespace std; struct X { string name; int a,b; }s[10000]; int n,hh,mm,ss; bool cmp1(const X&a,co