結果

問題 No.771 しおり
ユーザー AEnAEn
提出日時 2022-06-21 00:27:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,517 ms / 2,000 ms
コード長 626 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 133,340 KB
最終ジャッジ日時 2024-07-22 07:31:46
合計ジャッジ時間 18,914 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,517 ms
132,972 KB
testcase_01 AC 177 ms
82,288 KB
testcase_02 AC 37 ms
52,732 KB
testcase_03 AC 37 ms
53,420 KB
testcase_04 AC 38 ms
53,548 KB
testcase_05 AC 39 ms
53,388 KB
testcase_06 AC 38 ms
51,996 KB
testcase_07 AC 38 ms
52,624 KB
testcase_08 AC 73 ms
73,408 KB
testcase_09 AC 39 ms
53,200 KB
testcase_10 AC 38 ms
53,544 KB
testcase_11 AC 38 ms
52,140 KB
testcase_12 AC 38 ms
52,900 KB
testcase_13 AC 39 ms
52,760 KB
testcase_14 AC 72 ms
74,152 KB
testcase_15 AC 39 ms
52,908 KB
testcase_16 AC 44 ms
58,688 KB
testcase_17 AC 61 ms
67,844 KB
testcase_18 AC 39 ms
52,884 KB
testcase_19 AC 44 ms
59,584 KB
testcase_20 AC 39 ms
53,312 KB
testcase_21 AC 38 ms
53,148 KB
testcase_22 AC 43 ms
59,576 KB
testcase_23 AC 48 ms
62,164 KB
testcase_24 AC 63 ms
68,556 KB
testcase_25 AC 651 ms
103,864 KB
testcase_26 AC 92 ms
76,984 KB
testcase_27 AC 185 ms
82,496 KB
testcase_28 AC 337 ms
90,300 KB
testcase_29 AC 194 ms
82,500 KB
testcase_30 AC 1,322 ms
133,120 KB
testcase_31 AC 1,372 ms
132,948 KB
testcase_32 AC 98 ms
77,640 KB
testcase_33 AC 1,385 ms
133,152 KB
testcase_34 AC 1,274 ms
133,340 KB
testcase_35 AC 101 ms
77,960 KB
testcase_36 AC 84 ms
76,648 KB
testcase_37 AC 83 ms
76,484 KB
testcase_38 AC 96 ms
77,616 KB
testcase_39 AC 77 ms
75,268 KB
testcase_40 AC 518 ms
103,936 KB
testcase_41 AC 1,410 ms
132,820 KB
testcase_42 AC 1,223 ms
132,816 KB
testcase_43 AC 182 ms
83,024 KB
testcase_44 AC 1,286 ms
133,068 KB
testcase_45 AC 1,305 ms
133,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
c = []
for i in range(N):
    l, r = map(int, input().split())
    c.append([l, r-l])

# 整列済み本の集合iを任意の順で並べて、最後尾がj
dp = [[0]*N for _ in range(1<<N)]
for i in range(1,1<<N):
    for j in range(N):
        if not i & (1<<j):
            continue
        for k in range(N):
            if j == k or i & (1<<k):
                continue
            if dp[i ^ (1<<k)][k] == 0:
                dp[i ^ (1<<k)][k] = max(dp[i][j], c[j][1]+c[k][0])
            else:
                dp[i ^ (1<<k)][k] = min(dp[i ^ (1<<k)][k], max(dp[i][j], c[j][1]+c[k][0]))
print(min(dp[-1]))
0