結果

問題 No.580 旅館の予約計画
ユーザー mitsuomitsuo
提出日時 2018-08-22 10:16:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 573 ms / 2,000 ms
コード長 1,351 bytes
コンパイル時間 316 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-06-06 01:48:53
合計ジャッジ時間 7,915 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
12,416 KB
testcase_01 AC 37 ms
12,416 KB
testcase_02 AC 39 ms
12,544 KB
testcase_03 AC 54 ms
12,544 KB
testcase_04 AC 61 ms
12,544 KB
testcase_05 AC 54 ms
12,416 KB
testcase_06 AC 71 ms
12,544 KB
testcase_07 AC 125 ms
12,544 KB
testcase_08 AC 68 ms
12,544 KB
testcase_09 AC 58 ms
12,416 KB
testcase_10 AC 76 ms
12,416 KB
testcase_11 AC 95 ms
12,416 KB
testcase_12 AC 62 ms
12,404 KB
testcase_13 AC 48 ms
12,416 KB
testcase_14 AC 41 ms
12,416 KB
testcase_15 AC 573 ms
12,800 KB
testcase_16 AC 494 ms
12,672 KB
testcase_17 AC 372 ms
12,672 KB
testcase_18 AC 322 ms
12,544 KB
testcase_19 AC 263 ms
12,672 KB
testcase_20 AC 333 ms
12,800 KB
testcase_21 AC 303 ms
12,672 KB
testcase_22 AC 252 ms
12,544 KB
testcase_23 AC 303 ms
12,544 KB
testcase_24 AC 321 ms
12,544 KB
testcase_25 AC 167 ms
12,544 KB
testcase_26 AC 43 ms
12,288 KB
testcase_27 AC 43 ms
12,416 KB
testcase_28 AC 46 ms
12,544 KB
testcase_29 AC 47 ms
12,416 KB
testcase_30 AC 146 ms
12,544 KB
testcase_31 AC 410 ms
12,672 KB
testcase_32 AC 234 ms
12,544 KB
testcase_33 AC 378 ms
12,544 KB
testcase_34 AC 88 ms
12,544 KB
testcase_35 AC 31 ms
12,288 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