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

开门人和关门人

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

题目只能简单考虑,测试用例中有得签离时间小于签到时间,按理说上应该是跨了一天的,但本题不能考虑这种情况

#include <iostream>
#include "map"
using namespace std;

int main() {
    int n;
    while (cin >> n) { // 注意 while 处理多个 case
        // cout << a + b << endl;
        map<string, string> inMap;
        map<string, string> outMap;
        while (n--) {
            string name;
            string inTime;
            string outTime;
            cin >> name >> inTime >> outTime;
           
            inMap[inTime] = name;
            outMap[outTime] = name;
        }
        cout << inMap.begin()->second << ' ';
        auto it = outMap.end();
        it--;
        cout << it->second << endl;
    }
}
// 64 位输出请用 printf("%lld")

全部评论

相关推荐

头像
10-15 22:27
已编辑
门头沟学院 C++
罗格镇的小镇做题家:我投了hr打电话来说学历太低了不符合要求,建议投荣耀,结果荣耀也投了一定水花没有,非本211硕
投递华为等公司10个岗位
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务