結果

問題 No.771 しおり
ユーザー mkawa2mkawa2
提出日時 2022-03-08 15:49:57
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 706 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,248 KB
実行使用メモリ 113,208 KB
最終ジャッジ日時 2024-07-23 15:46:33
合計ジャッジ時間 26,689 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,937 ms
113,072 KB
testcase_01 AC 241 ms
79,632 KB
testcase_02 AC 39 ms
52,460 KB
testcase_03 AC 38 ms
53,180 KB
testcase_04 AC 39 ms
53,428 KB
testcase_05 AC 39 ms
52,832 KB
testcase_06 AC 38 ms
52,604 KB
testcase_07 AC 38 ms
52,948 KB
testcase_08 AC 62 ms
69,520 KB
testcase_09 AC 38 ms
53,548 KB
testcase_10 AC 37 ms
52,752 KB
testcase_11 AC 37 ms
52,536 KB
testcase_12 AC 38 ms
52,560 KB
testcase_13 AC 37 ms
52,824 KB
testcase_14 AC 65 ms
73,920 KB
testcase_15 AC 38 ms
53,472 KB
testcase_16 AC 47 ms
60,616 KB
testcase_17 AC 59 ms
67,404 KB
testcase_18 AC 38 ms
52,876 KB
testcase_19 AC 46 ms
60,556 KB
testcase_20 AC 37 ms
53,200 KB
testcase_21 AC 38 ms
53,852 KB
testcase_22 AC 45 ms
60,588 KB
testcase_23 AC 56 ms
65,976 KB
testcase_24 AC 58 ms
67,988 KB
testcase_25 AC 958 ms
93,192 KB
testcase_26 AC 81 ms
76,092 KB
testcase_27 AC 246 ms
79,920 KB
testcase_28 AC 578 ms
84,220 KB
testcase_29 AC 248 ms
79,624 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 AC 108 ms
76,536 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 AC 111 ms
76,504 KB
testcase_36 AC 67 ms
70,912 KB
testcase_37 AC 69 ms
71,676 KB
testcase_38 AC 107 ms
76,536 KB
testcase_39 AC 69 ms
72,432 KB
testcase_40 AC 917 ms
93,276 KB
testcase_41 TLE -
testcase_42 TLE -
testcase_43 AC 250 ms
79,664 KB
testcase_44 TLE -
testcase_45 AC 1,927 ms
112,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
inf = (1 << 31)-1

def main():
    n = II()
    ab = LLI(n)

    dp = [[inf]*(1 << n) for _ in range(n)]
    for i in range(n): dp[i][1 << i] = 0

    def chmin(i, s, val):
        if val < dp[i][s]: dp[i][s] = val

    for s in range(1, 1 << n):
        for i, (ai, bi) in enumerate(ab):
            pre = dp[i][s]
            for j, (aj, bj) in enumerate(ab):
                if s >> j & 1: continue
                chmin(j, s | 1 << j, max(pre, bi+aj-ai))

    ans = min(dp[i][-1] for i in range(n))
    print(ans)

main()
0