結果

問題 No.771 しおり
ユーザー maspymaspy
提出日時 2020-02-29 20:49:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 951 ms / 2,000 ms
コード長 725 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 133,020 KB
最終ジャッジ日時 2024-07-22 07:22:47
合計ジャッジ時間 13,599 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 854 ms
132,776 KB
testcase_01 AC 145 ms
82,560 KB
testcase_02 AC 37 ms
52,272 KB
testcase_03 AC 35 ms
52,688 KB
testcase_04 AC 36 ms
52,756 KB
testcase_05 AC 37 ms
52,660 KB
testcase_06 AC 37 ms
52,440 KB
testcase_07 AC 36 ms
52,132 KB
testcase_08 AC 56 ms
66,828 KB
testcase_09 AC 37 ms
52,336 KB
testcase_10 AC 37 ms
52,480 KB
testcase_11 AC 36 ms
53,612 KB
testcase_12 AC 37 ms
52,988 KB
testcase_13 AC 36 ms
53,308 KB
testcase_14 AC 59 ms
67,868 KB
testcase_15 AC 35 ms
52,320 KB
testcase_16 AC 40 ms
59,516 KB
testcase_17 AC 49 ms
64,804 KB
testcase_18 AC 35 ms
52,704 KB
testcase_19 AC 41 ms
58,976 KB
testcase_20 AC 35 ms
53,200 KB
testcase_21 AC 36 ms
52,556 KB
testcase_22 AC 42 ms
59,720 KB
testcase_23 AC 43 ms
60,372 KB
testcase_24 AC 52 ms
65,336 KB
testcase_25 AC 450 ms
104,188 KB
testcase_26 AC 65 ms
71,284 KB
testcase_27 AC 148 ms
83,000 KB
testcase_28 AC 307 ms
89,828 KB
testcase_29 AC 146 ms
82,600 KB
testcase_30 AC 891 ms
132,992 KB
testcase_31 AC 951 ms
132,828 KB
testcase_32 AC 84 ms
74,648 KB
testcase_33 AC 932 ms
132,696 KB
testcase_34 AC 883 ms
132,680 KB
testcase_35 AC 83 ms
74,868 KB
testcase_36 AC 63 ms
70,056 KB
testcase_37 AC 64 ms
68,904 KB
testcase_38 AC 83 ms
74,092 KB
testcase_39 AC 63 ms
68,992 KB
testcase_40 AC 438 ms
103,948 KB
testcase_41 AC 915 ms
132,904 KB
testcase_42 AC 880 ms
132,664 KB
testcase_43 AC 151 ms
83,088 KB
testcase_44 AC 910 ms
133,020 KB
testcase_45 AC 926 ms
132,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# %%
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines


# %%
N = int(readline())
m = map(int, read().split())
AB = list(zip(m, m))

# %%
A, B = zip(*AB)

# # %%
INF = 10 ** 18
dp = [[INF] * N for _ in range(1 << N)]
for n in range(N):
    dp[1 << n][n] = 0

for subset in range(1 << N):
    for newbook in range(N):
        if subset & (1 << newbook):
            continue
        newset = subset | (1 << newbook)
        for lastbook in range(N):
            x = max(dp[subset][lastbook], B[lastbook] - A[lastbook] + A[newbook])
            if dp[newset][newbook] > x:
                dp[newset][newbook] = x

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