結果

問題 No.771 しおり
ユーザー Shuz*Shuz*
提出日時 2018-12-08 17:58:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,513 ms / 2,000 ms
コード長 670 bytes
コンパイル時間 233 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 155,272 KB
最終ジャッジ日時 2024-09-26 00:41:34
合計ジャッジ時間 20,595 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,470 ms
155,272 KB
testcase_01 AC 176 ms
83,688 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 39 ms
52,480 KB
testcase_04 AC 40 ms
52,224 KB
testcase_05 AC 39 ms
52,736 KB
testcase_06 AC 38 ms
51,968 KB
testcase_07 AC 39 ms
52,352 KB
testcase_08 AC 64 ms
68,096 KB
testcase_09 AC 38 ms
52,096 KB
testcase_10 AC 39 ms
51,584 KB
testcase_11 AC 39 ms
52,480 KB
testcase_12 AC 38 ms
51,840 KB
testcase_13 AC 38 ms
52,096 KB
testcase_14 AC 65 ms
69,120 KB
testcase_15 AC 38 ms
51,968 KB
testcase_16 AC 44 ms
57,984 KB
testcase_17 AC 69 ms
66,304 KB
testcase_18 AC 44 ms
51,840 KB
testcase_19 AC 50 ms
58,368 KB
testcase_20 AC 44 ms
52,096 KB
testcase_21 AC 44 ms
51,840 KB
testcase_22 AC 49 ms
57,984 KB
testcase_23 AC 57 ms
61,568 KB
testcase_24 AC 69 ms
66,560 KB
testcase_25 AC 656 ms
115,468 KB
testcase_26 AC 79 ms
71,296 KB
testcase_27 AC 180 ms
83,840 KB
testcase_28 AC 364 ms
91,520 KB
testcase_29 AC 184 ms
83,988 KB
testcase_30 AC 1,432 ms
154,928 KB
testcase_31 AC 1,443 ms
154,888 KB
testcase_32 AC 93 ms
77,568 KB
testcase_33 AC 1,476 ms
154,760 KB
testcase_34 AC 1,501 ms
154,896 KB
testcase_35 AC 94 ms
77,568 KB
testcase_36 AC 67 ms
69,120 KB
testcase_37 AC 69 ms
70,016 KB
testcase_38 AC 90 ms
77,440 KB
testcase_39 AC 69 ms
70,144 KB
testcase_40 AC 596 ms
115,428 KB
testcase_41 AC 1,421 ms
154,876 KB
testcase_42 AC 1,394 ms
155,024 KB
testcase_43 AC 181 ms
83,968 KB
testcase_44 AC 1,513 ms
154,888 KB
testcase_45 AC 1,359 ms
155,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = 100000
MAX_N = 20
N = int(input())
A = []
B = []
for i in range(N):
    a, b = map(int, input().split())
    A.append(a)
    B.append(b - a)
DP = []
for i in range(1 << N):
    DP.append([])
    for j in range(N):
        DP[i].append(INF)
for i in range(1 << N):
    for j in range(N):
        if i & (1 << j):
            for k in range(N):
                if not i & (1 << k):
                    new_max = (B[j] + A[k]) if DP[i][j] == INF else max(DP[i][j], B[j] + A[k])
                    new_bit = i | (1 << k)
                    DP[new_bit][k] = min(DP[new_bit][k], new_max)
res = INF
for i in range(N):
    res = min(res, DP[(1 << N) - 1][i])
print(res)
0