結果

問題 No.771 しおり
ユーザー lloyzlloyz
提出日時 2023-10-27 00:10:24
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 732 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 81,976 KB
実行使用メモリ 132,604 KB
最終ジャッジ日時 2024-09-25 12:35:01
合計ジャッジ時間 26,150 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,923 ms
132,536 KB
testcase_01 AC 237 ms
82,544 KB
testcase_02 AC 38 ms
52,396 KB
testcase_03 AC 38 ms
52,324 KB
testcase_04 AC 37 ms
53,136 KB
testcase_05 AC 38 ms
52,264 KB
testcase_06 AC 38 ms
52,880 KB
testcase_07 AC 39 ms
52,744 KB
testcase_08 AC 69 ms
71,764 KB
testcase_09 AC 37 ms
53,548 KB
testcase_10 AC 38 ms
52,616 KB
testcase_11 AC 38 ms
52,564 KB
testcase_12 AC 37 ms
53,016 KB
testcase_13 AC 38 ms
52,756 KB
testcase_14 AC 73 ms
73,420 KB
testcase_15 AC 38 ms
52,024 KB
testcase_16 AC 41 ms
57,956 KB
testcase_17 AC 61 ms
68,416 KB
testcase_18 AC 38 ms
53,068 KB
testcase_19 AC 42 ms
59,540 KB
testcase_20 AC 38 ms
52,944 KB
testcase_21 AC 37 ms
52,596 KB
testcase_22 AC 42 ms
58,144 KB
testcase_23 AC 49 ms
63,760 KB
testcase_24 AC 61 ms
68,752 KB
testcase_25 AC 900 ms
103,364 KB
testcase_26 AC 94 ms
77,092 KB
testcase_27 AC 240 ms
82,428 KB
testcase_28 AC 514 ms
89,544 KB
testcase_29 AC 247 ms
82,452 KB
testcase_30 TLE -
testcase_31 AC 1,966 ms
132,096 KB
testcase_32 AC 109 ms
77,748 KB
testcase_33 TLE -
testcase_34 TLE -
testcase_35 AC 114 ms
77,796 KB
testcase_36 AC 84 ms
77,048 KB
testcase_37 AC 87 ms
76,608 KB
testcase_38 AC 110 ms
77,576 KB
testcase_39 AC 86 ms
76,452 KB
testcase_40 AC 861 ms
103,704 KB
testcase_41 TLE -
testcase_42 AC 1,929 ms
132,276 KB
testcase_43 AC 241 ms
82,420 KB
testcase_44 TLE -
testcase_45 AC 1,831 ms
132,604 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 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]))

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