結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,339 ms
132,736 KB
testcase_01 AC 174 ms
82,688 KB
testcase_02 AC 38 ms
51,968 KB
testcase_03 AC 38 ms
52,224 KB
testcase_04 AC 38 ms
51,840 KB
testcase_05 AC 38 ms
52,608 KB
testcase_06 AC 38 ms
51,840 KB
testcase_07 AC 38 ms
52,480 KB
testcase_08 AC 60 ms
66,944 KB
testcase_09 AC 38 ms
52,096 KB
testcase_10 AC 38 ms
52,096 KB
testcase_11 AC 44 ms
52,480 KB
testcase_12 AC 38 ms
52,480 KB
testcase_13 AC 38 ms
52,736 KB
testcase_14 AC 60 ms
66,560 KB
testcase_15 AC 36 ms
51,840 KB
testcase_16 AC 43 ms
59,008 KB
testcase_17 AC 53 ms
64,384 KB
testcase_18 AC 38 ms
52,096 KB
testcase_19 AC 43 ms
59,008 KB
testcase_20 AC 37 ms
52,352 KB
testcase_21 AC 38 ms
52,224 KB
testcase_22 AC 43 ms
58,880 KB
testcase_23 AC 50 ms
62,336 KB
testcase_24 AC 54 ms
64,256 KB
testcase_25 AC 663 ms
103,808 KB
testcase_26 AC 73 ms
71,168 KB
testcase_27 AC 177 ms
82,560 KB
testcase_28 AC 451 ms
89,600 KB
testcase_29 AC 171 ms
82,688 KB
testcase_30 AC 1,272 ms
132,736 KB
testcase_31 AC 1,323 ms
132,736 KB
testcase_32 AC 106 ms
72,960 KB
testcase_33 AC 1,314 ms
132,720 KB
testcase_34 AC 1,306 ms
132,736 KB
testcase_35 AC 89 ms
72,960 KB
testcase_36 AC 63 ms
67,840 KB
testcase_37 AC 63 ms
68,736 KB
testcase_38 AC 90 ms
73,472 KB
testcase_39 AC 64 ms
68,224 KB
testcase_40 AC 587 ms
103,952 KB
testcase_41 AC 1,341 ms
132,724 KB
testcase_42 AC 1,287 ms
132,864 KB
testcase_43 AC 195 ms
82,776 KB
testcase_44 AC 1,376 ms
133,044 KB
testcase_45 AC 1,244 ms
132,908 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