【题解】PATA-1006 Sign In and Sign Out
Sign In and Sign Out(PATA-1006)
题面
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.
输入
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:
1 ID_number Sign_in_time Sign_out_timewhere times are given in the format
HH:MM:SS
, andID_number
is a string with no more than 15 characters.
输出
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.
样例输入
1 | 3 |
样例输出
1 | SC3021234 CS301133 |
提示
无
思路
比大小的水题。RE就是数组开小了。
代码
1 | char name[20], in[10], out[10]; |