結果

問題 No.580 旅館の予約計画
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-07-28 04:08:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 987 bytes
コンパイル時間 247 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 71,168 KB
最終ジャッジ日時 2024-07-28 04:08:44
合計ジャッジ時間 4,012 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 42 ms
52,608 KB
testcase_03 AC 40 ms
52,608 KB
testcase_04 AC 41 ms
52,736 KB
testcase_05 AC 40 ms
52,736 KB
testcase_06 AC 41 ms
52,736 KB
testcase_07 AC 45 ms
58,968 KB
testcase_08 AC 41 ms
52,864 KB
testcase_09 AC 45 ms
59,392 KB
testcase_10 AC 45 ms
58,752 KB
testcase_11 AC 46 ms
59,904 KB
testcase_12 AC 53 ms
63,104 KB
testcase_13 AC 48 ms
60,800 KB
testcase_14 AC 53 ms
62,464 KB
testcase_15 AC 67 ms
71,168 KB
testcase_16 AC 69 ms
70,272 KB
testcase_17 AC 68 ms
70,016 KB
testcase_18 AC 68 ms
70,144 KB
testcase_19 AC 70 ms
68,992 KB
testcase_20 AC 69 ms
68,352 KB
testcase_21 AC 68 ms
70,016 KB
testcase_22 AC 58 ms
64,896 KB
testcase_23 AC 65 ms
69,504 KB
testcase_24 AC 65 ms
69,192 KB
testcase_25 AC 63 ms
67,712 KB
testcase_26 AC 44 ms
58,880 KB
testcase_27 AC 43 ms
58,112 KB
testcase_28 AC 39 ms
52,608 KB
testcase_29 AC 39 ms
52,480 KB
testcase_30 AC 67 ms
70,016 KB
testcase_31 AC 64 ms
68,480 KB
testcase_32 AC 67 ms
69,504 KB
testcase_33 AC 67 ms
70,656 KB
testcase_34 AC 70 ms
69,760 KB
testcase_35 AC 40 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

## https://yukicoder.me/problems/no/580

def main():
    N, M = map(int, input().split())
    lists = []
    for _ in range(M):
        d, hhmmd, o, hhommo = input().split()

        d = int(d)
        hhd, mmd = map(int, hhmmd.split(":"))
        o = int(o)
        hho, mmo = map(int, hhommo.split(":"))

        s = (d -2 ) * (60 * 24) + hhd * 60 + mmd
        g = (o -2 ) * (60 * 24) + hho * 60 + mmo
        lists.append((s, g))

    lists.sort(key=lambda x : x[1] * 1000000 + x[0])

    room_ends = [-2] * N
    answer = 0
    for s, g in lists:
        target_s = -float("inf")
        target_n = -1
        for n in range(N):
            if room_ends[n] < s:
                if room_ends[n] > target_s:
                    target_s = room_ends[n]
                    target_n = n

        if target_n != -1:
            room_ends[target_n] = g
            answer += 1
            
    print(answer)
        
                

    











if __name__ == '__main__':
    main()
0