Analysis of Pat computer problems in Zhejiang University 1006. Sign in and sign out (25)

Source: Internet
Author: User
1006. Sign in and sign out (25) Time Limit 400 MS
The memory limit is 32000 kb.
Code length limit: 16000 B
Criterion author 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. given the records of signing in's and out's, you are supposed to find
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:

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

Sample output:

SC3021234 CS301133
 
#include <iostream>#include <string>#include <vector>#include <algorithm>using namespace std;typedef struct  persons{string ID_number;string Sign_in_time;string Sign_out_time;}persons;bool compare1(persons a,persons b){return a.Sign_in_time<b.Sign_in_time;}bool compare2(persons a,persons b){return a.Sign_out_time>b.Sign_out_time;}int main(){int M;    persons  person;cin>>M;vector<persons>  vec;vector<persons>::iterator it;while(M--){   cin>>person.ID_number>>person.Sign_in_time>>person.Sign_out_time;   vec.push_back(person);}sort(vec.begin(),vec.end(),compare1);cout<<vec.begin()->ID_number;cout<<" ";sort(vec.begin(),vec.end(),compare2);cout<<vec.begin()->ID_number;cout<<endl;  //system("pause");return 0;}

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.