結果

問題 No.771 しおり
ユーザー lloyzlloyz
提出日時 2023-10-27 00:04:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,994 ms / 2,000 ms
コード長 609 bytes
コンパイル時間 414 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 133,020 KB
最終ジャッジ日時 2024-09-25 12:34:28
合計ジャッジ時間 25,364 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,879 ms
132,280 KB
testcase_01 AC 229 ms
82,868 KB
testcase_02 AC 37 ms
53,496 KB
testcase_03 AC 37 ms
52,528 KB
testcase_04 AC 37 ms
53,804 KB
testcase_05 AC 36 ms
52,888 KB
testcase_06 AC 35 ms
52,336 KB
testcase_07 AC 36 ms
52,628 KB
testcase_08 AC 65 ms
71,372 KB
testcase_09 AC 36 ms
53,044 KB
testcase_10 AC 37 ms
53,288 KB
testcase_11 AC 37 ms
52,832 KB
testcase_12 AC 37 ms
52,400 KB
testcase_13 AC 39 ms
52,688 KB
testcase_14 AC 72 ms
73,096 KB
testcase_15 AC 37 ms
52,216 KB
testcase_16 AC 42 ms
59,700 KB
testcase_17 AC 62 ms
67,888 KB
testcase_18 AC 37 ms
53,144 KB
testcase_19 AC 41 ms
59,568 KB
testcase_20 AC 37 ms
53,232 KB
testcase_21 AC 38 ms
52,192 KB
testcase_22 AC 40 ms
59,524 KB
testcase_23 AC 49 ms
62,620 KB
testcase_24 AC 61 ms
68,400 KB
testcase_25 AC 853 ms
103,752 KB
testcase_26 AC 90 ms
77,448 KB
testcase_27 AC 232 ms
82,808 KB
testcase_28 AC 463 ms
89,592 KB
testcase_29 AC 235 ms
82,408 KB
testcase_30 AC 1,905 ms
132,268 KB
testcase_31 AC 1,967 ms
133,020 KB
testcase_32 AC 104 ms
78,212 KB
testcase_33 AC 1,994 ms
132,416 KB
testcase_34 AC 1,945 ms
133,004 KB
testcase_35 AC 108 ms
78,244 KB
testcase_36 AC 77 ms
74,960 KB
testcase_37 AC 83 ms
76,888 KB
testcase_38 AC 106 ms
77,740 KB
testcase_39 AC 84 ms
76,900 KB
testcase_40 AC 795 ms
103,536 KB
testcase_41 AC 1,952 ms
132,820 KB
testcase_42 AC 1,934 ms
132,496 KB
testcase_43 AC 238 ms
82,812 KB
testcase_44 AC 1,933 ms
132,556 KB
testcase_45 AC 1,784 ms
132,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

n = int(input())
A = [list(map(int, input().split())) for _ in range(n)]

INF = 10**18
DP = [[INF for _ in range(n)] for _ in range(1 << n)]
for i in range(n):
    DP[1 << i][i] = 0
for bit in range(1, 1 << n):
    seen = set()
    for i in range(n):
        if (bit >> i) & 1:
            seen.add(i)
    for i in range(n):
        if i in seen:
            for j in range(n):
                if j not in seen:
                    nbit = bit | (1 << j)
                    DP[nbit][j] = min(DP[nbit][j], max(DP[bit][i], A[i][1] - A[i][0] + A[j][0]))
print(min(DP[-1]))
0