結果

問題 No.107 モンスター
ユーザー rlangevinrlangevin
提出日時 2023-10-17 08:55:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 75 ms / 5,000 ms
コード長 432 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 73,488 KB
最終ジャッジ日時 2024-09-17 07:23:22
合計ジャッジ時間 2,469 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,212 KB
testcase_01 AC 38 ms
52,888 KB
testcase_02 AC 38 ms
53,128 KB
testcase_03 AC 37 ms
52,400 KB
testcase_04 AC 37 ms
53,040 KB
testcase_05 AC 38 ms
52,220 KB
testcase_06 AC 37 ms
53,080 KB
testcase_07 AC 37 ms
52,260 KB
testcase_08 AC 37 ms
53,712 KB
testcase_09 AC 38 ms
52,424 KB
testcase_10 AC 38 ms
52,836 KB
testcase_11 AC 37 ms
53,248 KB
testcase_12 AC 38 ms
53,536 KB
testcase_13 AC 61 ms
67,392 KB
testcase_14 AC 67 ms
69,972 KB
testcase_15 AC 67 ms
69,072 KB
testcase_16 AC 37 ms
53,488 KB
testcase_17 AC 67 ms
70,712 KB
testcase_18 AC 63 ms
69,236 KB
testcase_19 AC 62 ms
69,288 KB
testcase_20 AC 65 ms
69,644 KB
testcase_21 AC 68 ms
70,728 KB
testcase_22 AC 72 ms
72,064 KB
testcase_23 AC 72 ms
72,804 KB
testcase_24 AC 75 ms
73,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
D = list(map(int, input().split()))

N2 = 1 << N
dp = [0] * N2
dp[0] = 100
for s in range(N2):
    if dp[s] == 0:
        continue
    ma = 100
    for i in range(N):
        if ((s >> i) & 1) and D[i] < 0:
            ma += 100
    for i in range(N):
        if (s >> i) & 1:
            continue
        nex = s | (1 << i)
        dp[nex] = min(ma + 100 * int(D[i] < 0), max(dp[nex], dp[s] + D[i]))

print(dp[-1])
0