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 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.

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define N 15
typedef struct
{
        int h,m,s;
        }Time;
int cmp(Time a,Time b);
int main ()
{
    int num;
    scanf("%d",&num);
    char unlock[N],lock[N],id[N];
    Time fst,snd;
    Time max={0,0,0};
    Time min={23,59,59};
    for ( int i=0;i<num;i++)
    {
        scanf("%s",id);
        scanf("%d:%d:%d %d:%d:%d",&fst.h,&fst.m,&fst.s,&snd.h,&snd.m,&snd.s);
        if( cmp(fst,min)<0)
        {
            min=fst;
            strcpy(unlock,id);
            }
        if( cmp(snd,max)>0)
        {
            max=snd;
            strcpy(lock,id);
            }
        }
    printf("%s %s",unlock,lock);
    system("pause");
    return 0;
    }
int cmp(Time a,Time b)
{
    if(a.h>b.h) return 1;
    else if(a.h==b.h)
    {
         if(a.m>b.m) return 1;
         else if(a.m==b.m)
         {
              if(a.s>b.s) return 1;
              else if(a.s==b.s) return 0;
              else return -1;
              }
         else return -1;
         }
    else return -1;
    return 0;
    }
时间: 2024-10-14 07:23:43

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

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

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

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 (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

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

PAT 甲级 1006 Sign In and Sign Out

1 #include <iostream> 2 #include <cstdio> 3 #include <cstring> 4 #include <algorithm> 5 6 using namespace std; 7 struct oi{ 8 string name; 9 int h1, m1, j1; 10 int h2, m2, j2; 11 }; 12 int bijiao1(oi x, oi y) 13 { 14 if (x.h1!=y.h1

PAT 1006. Sign In and Sign Out

#include<iostream> #include<string> using namespace std; int main(){ int cnt;cin>>cnt; string first,last,in("44:44:44"),out("00:00:00"); while(cnt--){ string a,b,c;cin>>a>>b>>c; if(b<in){first=a;i