結果

問題 No.771 しおり
ユーザー roarisroaris
提出日時 2019-08-19 16:17:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,326 ms / 2,000 ms
コード長 561 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 132,608 KB
最終ジャッジ日時 2024-07-22 07:19:19
合計ジャッジ時間 18,417 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,237 ms
131,968 KB
testcase_01 AC 184 ms
82,560 KB
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 39 ms
52,096 KB
testcase_04 AC 38 ms
52,224 KB
testcase_05 AC 39 ms
52,608 KB
testcase_06 AC 39 ms
51,968 KB
testcase_07 AC 38 ms
52,096 KB
testcase_08 AC 63 ms
68,608 KB
testcase_09 AC 39 ms
51,712 KB
testcase_10 AC 38 ms
52,096 KB
testcase_11 AC 37 ms
52,096 KB
testcase_12 AC 39 ms
52,224 KB
testcase_13 AC 38 ms
52,096 KB
testcase_14 AC 66 ms
69,376 KB
testcase_15 AC 38 ms
51,712 KB
testcase_16 AC 44 ms
59,136 KB
testcase_17 AC 61 ms
67,328 KB
testcase_18 AC 39 ms
51,840 KB
testcase_19 AC 42 ms
58,880 KB
testcase_20 AC 36 ms
51,840 KB
testcase_21 AC 39 ms
51,968 KB
testcase_22 AC 43 ms
59,008 KB
testcase_23 AC 49 ms
62,208 KB
testcase_24 AC 59 ms
67,200 KB
testcase_25 AC 699 ms
103,552 KB
testcase_26 AC 72 ms
73,984 KB
testcase_27 AC 192 ms
82,816 KB
testcase_28 AC 360 ms
89,472 KB
testcase_29 AC 200 ms
82,432 KB
testcase_30 AC 1,249 ms
132,224 KB
testcase_31 AC 1,270 ms
132,224 KB
testcase_32 AC 88 ms
77,568 KB
testcase_33 AC 1,261 ms
132,096 KB
testcase_34 AC 1,326 ms
132,352 KB
testcase_35 AC 86 ms
77,696 KB
testcase_36 AC 68 ms
71,808 KB
testcase_37 AC 69 ms
72,064 KB
testcase_38 AC 86 ms
77,184 KB
testcase_39 AC 74 ms
74,368 KB
testcase_40 AC 630 ms
103,680 KB
testcase_41 AC 1,309 ms
132,608 KB
testcase_42 AC 1,261 ms
132,608 KB
testcase_43 AC 179 ms
82,560 KB
testcase_44 AC 1,316 ms
132,224 KB
testcase_45 AC 1,199 ms
132,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
A, B = [], []

for _ in range(N):
    Ai, Bi = map(int, input().split())
    A.append(Ai)
    B.append(Bi)

dp = [[10 ** 18 for _ in range(N)] for _ in range(1 << N)]

for v in range(N):
    dp[(1 << N) - 1][v] = 0
    
for S in range((1 << N) - 2, -1, -1):
    for u in range(N):
        if not S >> u & 1:
            for v in range(N):
                dp[S][v] = min(dp[S][v], max(dp[S | 1 << u][u], B[v] - A[v] + A[u]))

ans = 10 ** 18

for i in range(N):
    ans = min(ans, dp[1 << i][i])

print(ans)
0