結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,935 ms
113,028 KB
testcase_01 AC 241 ms
79,856 KB
testcase_02 AC 37 ms
53,728 KB
testcase_03 AC 37 ms
52,212 KB
testcase_04 AC 37 ms
52,200 KB
testcase_05 AC 38 ms
53,028 KB
testcase_06 AC 37 ms
53,184 KB
testcase_07 AC 37 ms
53,056 KB
testcase_08 AC 62 ms
69,268 KB
testcase_09 AC 38 ms
53,440 KB
testcase_10 AC 38 ms
52,324 KB
testcase_11 AC 38 ms
54,256 KB
testcase_12 AC 38 ms
53,136 KB
testcase_13 AC 38 ms
53,200 KB
testcase_14 AC 64 ms
73,248 KB
testcase_15 AC 38 ms
52,816 KB
testcase_16 AC 46 ms
60,664 KB
testcase_17 AC 58 ms
67,940 KB
testcase_18 AC 38 ms
52,412 KB
testcase_19 AC 45 ms
60,680 KB
testcase_20 AC 39 ms
52,068 KB
testcase_21 AC 38 ms
53,064 KB
testcase_22 AC 44 ms
60,976 KB
testcase_23 AC 55 ms
66,912 KB
testcase_24 AC 58 ms
68,664 KB
testcase_25 AC 956 ms
93,844 KB
testcase_26 AC 81 ms
76,200 KB
testcase_27 AC 248 ms
79,504 KB
testcase_28 AC 580 ms
84,500 KB
testcase_29 AC 247 ms
79,684 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 AC 108 ms
76,520 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 AC 110 ms
77,004 KB
testcase_36 AC 66 ms
72,028 KB
testcase_37 AC 68 ms
71,600 KB
testcase_38 AC 108 ms
76,664 KB
testcase_39 AC 69 ms
72,404 KB
testcase_40 AC 912 ms
93,080 KB
testcase_41 TLE -
testcase_42 TLE -
testcase_43 AC 250 ms
79,420 KB
testcase_44 TLE -
testcase_45 AC 1,928 ms
112,644 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 << 63)-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