题解 | #开门人和关门人#

开门人和关门人

https://www.nowcoder.com/practice/a4b37b53a44d454ab0834e1517983215

#include <iostream>
#include <algorithm>
using namespace std;

struct stu{
    string name;
    int stime;
    int etime;
};
//按签到时间从小到大排序
bool cmp(stu a,stu b){
    return a.stime<b.stime;
}
//按签离时间从小到大排序
bool cmp1(stu a,stu b){
    return a.etime<b.etime;
}
int main() {
    int m;
    cin>>m;
    stu a[m];
    for(int i=0;i<m;i++){
        cin>>a[i].name;
        int h,m,s;
        scanf("%d:%d:%d ",&h,&m,&s);
        a[i].stime=h*3600+m*60+s;
        scanf("%d:%d:%d",&h,&m,&s);
        a[i].etime=h*3600+m*60+s;
    }
    sort(a,a+m,cmp);
    cout<<a[0].name<<" ";
    sort(a,a+m,cmp1);
    cout<<a[m-1].name<<endl;
    return 0;
}

全部评论

相关推荐

湫湫湫不会java:1.在校经历全删了2.。这些荣誉其实也没啥用只能说,要的是好的开发者不是好好学生3.项目五六点就行了,一个亮点一俩行,xxx技术解决,xxx问题带来xxx提升。第一页学历不行,然后啥有价值的信息也没有,到第二页看到项目了,第一个项目九点,第二个项目像凑数的俩点。总体给人又臭又长,一起加油吧兄弟
点赞 评论 收藏
分享
06-05 19:46
已编辑
武汉大学 后端
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务