結果

問題 No.771 しおり
ユーザー lloyzlloyz
提出日時 2023-10-27 00:03:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,902 ms / 2,000 ms
コード長 570 bytes
コンパイル時間 463 ms
コンパイル使用メモリ 82,412 KB
実行使用メモリ 132,868 KB
最終ジャッジ日時 2024-09-25 12:34:01
合計ジャッジ時間 24,453 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,785 ms
132,276 KB
testcase_01 AC 222 ms
82,456 KB
testcase_02 AC 36 ms
52,288 KB
testcase_03 AC 36 ms
52,548 KB
testcase_04 AC 36 ms
52,616 KB
testcase_05 AC 34 ms
52,768 KB
testcase_06 AC 35 ms
52,004 KB
testcase_07 AC 34 ms
53,288 KB
testcase_08 AC 67 ms
72,292 KB
testcase_09 AC 36 ms
52,532 KB
testcase_10 AC 36 ms
53,104 KB
testcase_11 AC 35 ms
52,072 KB
testcase_12 AC 35 ms
53,284 KB
testcase_13 AC 37 ms
52,500 KB
testcase_14 AC 70 ms
72,676 KB
testcase_15 AC 37 ms
52,604 KB
testcase_16 AC 40 ms
59,356 KB
testcase_17 AC 58 ms
69,424 KB
testcase_18 AC 37 ms
52,988 KB
testcase_19 AC 40 ms
58,216 KB
testcase_20 AC 34 ms
53,004 KB
testcase_21 AC 36 ms
52,628 KB
testcase_22 AC 40 ms
58,976 KB
testcase_23 AC 49 ms
62,708 KB
testcase_24 AC 61 ms
69,104 KB
testcase_25 AC 830 ms
103,924 KB
testcase_26 AC 89 ms
77,288 KB
testcase_27 AC 225 ms
82,856 KB
testcase_28 AC 447 ms
89,552 KB
testcase_29 AC 234 ms
82,388 KB
testcase_30 AC 1,837 ms
132,364 KB
testcase_31 AC 1,868 ms
132,404 KB
testcase_32 AC 102 ms
78,156 KB
testcase_33 AC 1,902 ms
132,868 KB
testcase_34 AC 1,856 ms
132,224 KB
testcase_35 AC 104 ms
77,744 KB
testcase_36 AC 73 ms
74,544 KB
testcase_37 AC 79 ms
76,620 KB
testcase_38 AC 101 ms
77,764 KB
testcase_39 AC 79 ms
76,656 KB
testcase_40 AC 762 ms
103,544 KB
testcase_41 AC 1,869 ms
132,100 KB
testcase_42 AC 1,815 ms
132,340 KB
testcase_43 AC 235 ms
82,764 KB
testcase_44 AC 1,807 ms
132,408 KB
testcase_45 AC 1,722 ms
132,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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