結果

問題 No.771 しおり
ユーザー Nikkuniku029Nikkuniku029
提出日時 2022-11-04 12:08:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,418 ms / 2,000 ms
コード長 516 bytes
コンパイル時間 333 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 133,336 KB
最終ジャッジ日時 2024-07-22 07:33:34
合計ジャッジ時間 18,315 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,418 ms
133,092 KB
testcase_01 AC 184 ms
82,860 KB
testcase_02 AC 38 ms
53,948 KB
testcase_03 AC 38 ms
53,060 KB
testcase_04 AC 38 ms
52,196 KB
testcase_05 AC 38 ms
52,468 KB
testcase_06 AC 38 ms
52,392 KB
testcase_07 AC 38 ms
52,068 KB
testcase_08 AC 70 ms
71,720 KB
testcase_09 AC 37 ms
53,496 KB
testcase_10 AC 37 ms
52,624 KB
testcase_11 AC 39 ms
52,352 KB
testcase_12 AC 38 ms
53,076 KB
testcase_13 AC 39 ms
53,280 KB
testcase_14 AC 63 ms
68,392 KB
testcase_15 AC 36 ms
52,344 KB
testcase_16 AC 42 ms
59,580 KB
testcase_17 AC 55 ms
68,108 KB
testcase_18 AC 37 ms
52,364 KB
testcase_19 AC 44 ms
59,964 KB
testcase_20 AC 38 ms
52,304 KB
testcase_21 AC 37 ms
52,696 KB
testcase_22 AC 43 ms
60,544 KB
testcase_23 AC 47 ms
61,928 KB
testcase_24 AC 59 ms
68,264 KB
testcase_25 AC 610 ms
104,016 KB
testcase_26 AC 74 ms
72,008 KB
testcase_27 AC 188 ms
82,752 KB
testcase_28 AC 377 ms
89,760 KB
testcase_29 AC 189 ms
82,736 KB
testcase_30 AC 1,183 ms
132,708 KB
testcase_31 AC 1,348 ms
132,756 KB
testcase_32 AC 86 ms
73,824 KB
testcase_33 AC 1,306 ms
132,904 KB
testcase_34 AC 1,200 ms
132,684 KB
testcase_35 AC 83 ms
74,100 KB
testcase_36 AC 66 ms
69,480 KB
testcase_37 AC 68 ms
70,304 KB
testcase_38 AC 82 ms
74,192 KB
testcase_39 AC 71 ms
70,684 KB
testcase_40 AC 574 ms
103,976 KB
testcase_41 AC 1,344 ms
133,336 KB
testcase_42 AC 1,274 ms
132,884 KB
testcase_43 AC 178 ms
82,708 KB
testcase_44 AC 1,372 ms
132,860 KB
testcase_45 AC 1,188 ms
133,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
books = [list(map(int, input().split())) for _ in range(N)]
INF = 1 << 62
dp = [[INF]*N for _ in range(1 << N)]
for i in range(N):
    dp[1 << i][i] = 0

for s in range(1 << N):
    for u in range(N):
        if not s & (1 << u) and s != 0:
            continue
        for v in range(N):
            if s & (1 << v):
                continue
            dp[s | (1 << v)][v] = min(dp[s | (1 << v)][v], max(
                dp[s][u], books[u][1]-books[u][0]+books[v][0]))

print(min(dp[(1 << N)-1]))
0