結果

問題 No.580 旅館の予約計画
ユーザー mitsuomitsuo
提出日時 2018-08-22 10:16:31
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 679 ms / 2,000 ms
コード長 1,351 bytes
コンパイル時間 401 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-12-23 12:31:35
合計ジャッジ時間 8,824 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
12,416 KB
testcase_01 AC 43 ms
12,544 KB
testcase_02 AC 48 ms
12,416 KB
testcase_03 AC 67 ms
12,544 KB
testcase_04 AC 77 ms
12,416 KB
testcase_05 AC 68 ms
12,544 KB
testcase_06 AC 85 ms
12,544 KB
testcase_07 AC 148 ms
12,672 KB
testcase_08 AC 83 ms
12,672 KB
testcase_09 AC 68 ms
12,416 KB
testcase_10 AC 83 ms
12,544 KB
testcase_11 AC 108 ms
12,544 KB
testcase_12 AC 69 ms
12,404 KB
testcase_13 AC 54 ms
12,416 KB
testcase_14 AC 48 ms
12,544 KB
testcase_15 AC 679 ms
12,800 KB
testcase_16 AC 560 ms
12,800 KB
testcase_17 AC 436 ms
12,672 KB
testcase_18 AC 369 ms
12,672 KB
testcase_19 AC 305 ms
12,800 KB
testcase_20 AC 381 ms
12,800 KB
testcase_21 AC 342 ms
12,544 KB
testcase_22 AC 304 ms
12,672 KB
testcase_23 AC 359 ms
12,544 KB
testcase_24 AC 381 ms
12,672 KB
testcase_25 AC 194 ms
12,672 KB
testcase_26 AC 52 ms
12,544 KB
testcase_27 AC 52 ms
12,416 KB
testcase_28 AC 51 ms
12,416 KB
testcase_29 AC 52 ms
12,288 KB
testcase_30 AC 164 ms
12,544 KB
testcase_31 AC 485 ms
12,800 KB
testcase_32 AC 272 ms
12,672 KB
testcase_33 AC 447 ms
12,544 KB
testcase_34 AC 104 ms
12,544 KB
testcase_35 AC 37 ms
12,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(n, m, guestdata):
    schedulenote = {(d,h,m) : 0
                for d in range(2, 9)
                for h in range(0, 24)
                for m in range(0, 60)}
    schedulelist = [(d,h,m)
                for d in range(2, 9)
                for h in range(0, 24)
                for m in range(0, 60)]
    totalcount = 0
    guestdata.sort(key=lambda x: x.split(" ")[2:])

    for guest in guestdata:
        d = guest.split(" ")
        checkin_day = int(d[0])
        checkin_h = int(d[1][:2])
        checkin_m = int(d[1][3:])
        checkout_day = int(d[2])
        checkout_h = int(d[3][:2])
        checkout_m = int(d[3][3:])

        checkin = (checkin_day, checkin_h, checkin_m)
        checkout = (checkout_day, checkout_h, checkout_m)
        available = True

        target_schedule = schedulelist[schedulelist.index(checkin):schedulelist.index(checkout) + 1]

        for schedule in target_schedule:
            if schedulenote[schedule] >= n:
                available = False
                break

        if available:
            totalcount += 1
            for schedule in target_schedule:
                schedulenote[schedule] += 1

    return totalcount

if __name__ == "__main__":
    l = input().split(" ")
    n, m = int(l[0]), int(l[1])
    data = [input() for _ in range(0, m)]
    print(solve(n, m, data))
0