結果

問題 No.771 しおり
ユーザー ryusukeryusuke
提出日時 2024-05-08 16:48:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,353 ms / 2,000 ms
コード長 564 bytes
コンパイル時間 231 ms
コンパイル使用メモリ 82,112 KB
実行使用メモリ 132,920 KB
最終ジャッジ日時 2024-12-14 22:15:34
合計ジャッジ時間 18,691 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,262 ms
132,488 KB
testcase_01 AC 178 ms
82,348 KB
testcase_02 AC 40 ms
52,128 KB
testcase_03 AC 39 ms
52,996 KB
testcase_04 AC 40 ms
52,684 KB
testcase_05 AC 40 ms
52,812 KB
testcase_06 AC 38 ms
53,184 KB
testcase_07 AC 39 ms
52,584 KB
testcase_08 AC 61 ms
66,744 KB
testcase_09 AC 38 ms
52,596 KB
testcase_10 AC 38 ms
53,376 KB
testcase_11 AC 39 ms
52,744 KB
testcase_12 AC 39 ms
53,816 KB
testcase_13 AC 39 ms
53,024 KB
testcase_14 AC 60 ms
66,888 KB
testcase_15 AC 40 ms
52,948 KB
testcase_16 AC 45 ms
59,532 KB
testcase_17 AC 55 ms
65,108 KB
testcase_18 AC 39 ms
53,608 KB
testcase_19 AC 45 ms
60,068 KB
testcase_20 AC 39 ms
52,152 KB
testcase_21 AC 39 ms
52,084 KB
testcase_22 AC 46 ms
58,912 KB
testcase_23 AC 52 ms
62,644 KB
testcase_24 AC 55 ms
64,524 KB
testcase_25 AC 653 ms
103,936 KB
testcase_26 AC 73 ms
70,536 KB
testcase_27 AC 177 ms
82,452 KB
testcase_28 AC 437 ms
89,584 KB
testcase_29 AC 176 ms
82,364 KB
testcase_30 AC 1,255 ms
132,736 KB
testcase_31 AC 1,294 ms
132,892 KB
testcase_32 AC 90 ms
73,136 KB
testcase_33 AC 1,290 ms
132,888 KB
testcase_34 AC 1,293 ms
132,712 KB
testcase_35 AC 90 ms
72,920 KB
testcase_36 AC 63 ms
68,024 KB
testcase_37 AC 64 ms
68,588 KB
testcase_38 AC 91 ms
73,588 KB
testcase_39 AC 65 ms
68,136 KB
testcase_40 AC 592 ms
103,688 KB
testcase_41 AC 1,333 ms
132,664 KB
testcase_42 AC 1,263 ms
132,528 KB
testcase_43 AC 176 ms
82,420 KB
testcase_44 AC 1,353 ms
132,920 KB
testcase_45 AC 1,228 ms
132,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A, B = [0]*N, [0]*N
for i in range(N):
    A[i], B[i] = map(int, input().split())

INF = 10**18
dp = [[INF]*N for _ in range(1 << N)]
for i in range(N):
    dp[1 << i][i] = 0
for i in range(1 << N):
    for a in range(N):
        for b in range(N):
            # a が最後で b を追加する
            if not (i >> a) & 1:
                continue
            if (i >> b) & 1:
                continue
            cost = max(dp[i][a], (B[a] - A[a]) + A[b])
            dp[i | (1 << b)][b] = min(dp[i | (1 << b)][b], cost)

print(min(dp[-1]))
0