文章

27

粉丝

0

获赞

125

访问

6.7k

头像
开门人和关门人 题解:麻烦大家看看我这样做虽然通过了但是很麻烦,有没有简单点的方法呀
jsd VIP
P1333 浙江大学机试题
发布于2025年2月25日 16:07
阅读数 129

#include<bits/stdc++.h>
using namespace std;

typedef struct record {
    string name;
    string stime;
    string ttime;
}record;

record r[10001];

bool compare1(record r1, record r2) {
    string s1 = r1.stime;
    string s2 = r2.stime;
    vector<int> t1;;
    vector<int> t2;
    stringstream ss1(s1);
    string num;
    while(getline(ss1, num, ':')) {
        t1.push_back(stoi(num));
    } 
    stringstream ss2(s2);
    while(getline(ss2, num, ':')) {
        t2.push_back(stoi(num));
    }
    if(t1[0] < t2[0]) return 1;
    else if(t1[0] == t2[0]) {
        if(t1[1] < t2[1]) return...

登录查看完整内容


登录后发布评论

1 条评论
admin SVIP
2025年2月25日 17:58

看看这个:https://noobdream.com/DreamJudge/Issue/code/651560/

赞(0)