結果

問題 No.771 しおり
ユーザー lloyzlloyz
提出日時 2023-10-27 00:12:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,482 ms / 2,000 ms
コード長 622 bytes
コンパイル時間 510 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 132,844 KB
最終ジャッジ日時 2024-09-25 12:35:21
合計ジャッジ時間 19,305 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,482 ms
132,844 KB
testcase_01 AC 180 ms
82,568 KB
testcase_02 AC 39 ms
52,704 KB
testcase_03 AC 39 ms
52,604 KB
testcase_04 AC 38 ms
52,248 KB
testcase_05 AC 39 ms
52,868 KB
testcase_06 AC 38 ms
52,880 KB
testcase_07 AC 38 ms
52,268 KB
testcase_08 AC 63 ms
69,260 KB
testcase_09 AC 38 ms
52,992 KB
testcase_10 AC 38 ms
53,228 KB
testcase_11 AC 38 ms
52,508 KB
testcase_12 AC 38 ms
52,664 KB
testcase_13 AC 39 ms
53,320 KB
testcase_14 AC 65 ms
69,504 KB
testcase_15 AC 38 ms
53,556 KB
testcase_16 AC 42 ms
58,380 KB
testcase_17 AC 57 ms
65,328 KB
testcase_18 AC 38 ms
53,408 KB
testcase_19 AC 41 ms
59,352 KB
testcase_20 AC 38 ms
52,548 KB
testcase_21 AC 39 ms
52,828 KB
testcase_22 AC 41 ms
58,828 KB
testcase_23 AC 47 ms
61,940 KB
testcase_24 AC 57 ms
65,888 KB
testcase_25 AC 621 ms
103,908 KB
testcase_26 AC 76 ms
74,308 KB
testcase_27 AC 179 ms
82,356 KB
testcase_28 AC 377 ms
89,796 KB
testcase_29 AC 184 ms
82,356 KB
testcase_30 AC 1,386 ms
132,648 KB
testcase_31 AC 1,355 ms
132,720 KB
testcase_32 AC 90 ms
77,428 KB
testcase_33 AC 1,393 ms
132,440 KB
testcase_34 AC 1,383 ms
132,696 KB
testcase_35 AC 91 ms
77,576 KB
testcase_36 AC 72 ms
73,204 KB
testcase_37 AC 72 ms
72,364 KB
testcase_38 AC 89 ms
77,400 KB
testcase_39 AC 69 ms
71,052 KB
testcase_40 AC 564 ms
104,140 KB
testcase_41 AC 1,359 ms
132,708 KB
testcase_42 AC 1,333 ms
132,624 KB
testcase_43 AC 183 ms
82,628 KB
testcase_44 AC 1,435 ms
132,704 KB
testcase_45 AC 1,239 ms
132,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

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

    INF = 10**18
    DP = [[INF] * n for _ in range(1 << n)]
    for i in range(n):
        DP[1 << i][i] = 0
    for bit in range(1, 1 << n):
        for i in range(n):
            if (bit >> i) & 1:
                for j in range(n):
                    if (bit >> j) & 1 == 0:
                        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]))

if __name__ == '__main__':
    main()
0