結果

問題 No.771 しおり
ユーザー convexineqconvexineq
提出日時 2021-05-21 01:26:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,139 ms / 2,000 ms
コード長 455 bytes
コンパイル時間 333 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 132,980 KB
最終ジャッジ日時 2024-07-22 07:28:14
合計ジャッジ時間 15,731 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,064 ms
132,872 KB
testcase_01 AC 149 ms
82,468 KB
testcase_02 AC 37 ms
53,204 KB
testcase_03 AC 37 ms
52,660 KB
testcase_04 AC 38 ms
52,644 KB
testcase_05 AC 37 ms
52,984 KB
testcase_06 AC 38 ms
53,504 KB
testcase_07 AC 37 ms
53,044 KB
testcase_08 AC 61 ms
68,648 KB
testcase_09 AC 38 ms
53,256 KB
testcase_10 AC 38 ms
52,980 KB
testcase_11 AC 39 ms
53,496 KB
testcase_12 AC 37 ms
52,596 KB
testcase_13 AC 37 ms
53,244 KB
testcase_14 AC 64 ms
69,644 KB
testcase_15 AC 37 ms
53,384 KB
testcase_16 AC 41 ms
58,908 KB
testcase_17 AC 57 ms
67,356 KB
testcase_18 AC 36 ms
53,184 KB
testcase_19 AC 39 ms
58,964 KB
testcase_20 AC 37 ms
52,952 KB
testcase_21 AC 38 ms
52,820 KB
testcase_22 AC 42 ms
58,412 KB
testcase_23 AC 47 ms
62,408 KB
testcase_24 AC 57 ms
67,148 KB
testcase_25 AC 494 ms
103,752 KB
testcase_26 AC 72 ms
70,776 KB
testcase_27 AC 164 ms
83,156 KB
testcase_28 AC 320 ms
89,640 KB
testcase_29 AC 171 ms
82,596 KB
testcase_30 AC 1,109 ms
132,752 KB
testcase_31 AC 1,133 ms
132,844 KB
testcase_32 AC 76 ms
73,012 KB
testcase_33 AC 1,113 ms
132,640 KB
testcase_34 AC 1,103 ms
132,696 KB
testcase_35 AC 78 ms
73,428 KB
testcase_36 AC 62 ms
68,920 KB
testcase_37 AC 63 ms
70,732 KB
testcase_38 AC 77 ms
73,168 KB
testcase_39 AC 62 ms
71,384 KB
testcase_40 AC 440 ms
103,980 KB
testcase_41 AC 1,139 ms
132,820 KB
testcase_42 AC 1,080 ms
132,700 KB
testcase_43 AC 156 ms
82,808 KB
testcase_44 AC 1,080 ms
132,980 KB
testcase_45 AC 1,016 ms
132,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = [0]*n
b = [0]*n
for i in range(n):
    a[i],b[i] = map(int,input().split())

N = 1<<n
INF = 1<<30
dp = [[INF]*n for _ in range(N)]
for i in range(n):
    dp[1<<i][i] = 0

for mask in range(N):
    for i in range(n):
        if mask>>i&1==0: continue
        v = dp[mask][i]
        for j in range(n):
            if mask>>j&1: continue
            dp[mask|(1<<j)][j] = min(dp[mask|(1<<j)][j], max(v,a[j]+b[i]-a[i]))
print(min(dp[-1]))
0