結果

問題 No.107 モンスター
ユーザー nebukuro09nebukuro09
提出日時 2016-10-04 17:13:52
言語 Python2
(2.7.18)
結果
AC  
実行時間 3,663 ms / 5,000 ms
コード長 490 bytes
コンパイル時間 467 ms
コンパイル使用メモリ 6,944 KB
実行使用メモリ 110,284 KB
最終ジャッジ日時 2024-06-01 04:37:44
合計ジャッジ時間 14,961 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,816 KB
testcase_01 AC 11 ms
6,940 KB
testcase_02 AC 11 ms
6,944 KB
testcase_03 AC 12 ms
6,940 KB
testcase_04 AC 12 ms
6,944 KB
testcase_05 AC 11 ms
6,944 KB
testcase_06 AC 12 ms
6,940 KB
testcase_07 AC 11 ms
6,944 KB
testcase_08 AC 11 ms
6,944 KB
testcase_09 AC 11 ms
6,944 KB
testcase_10 AC 12 ms
6,940 KB
testcase_11 AC 12 ms
6,940 KB
testcase_12 AC 12 ms
6,940 KB
testcase_13 AC 158 ms
12,448 KB
testcase_14 AC 615 ms
25,872 KB
testcase_15 AC 608 ms
26,080 KB
testcase_16 AC 11 ms
6,940 KB
testcase_17 AC 135 ms
12,592 KB
testcase_18 AC 30 ms
6,944 KB
testcase_19 AC 32 ms
6,940 KB
testcase_20 AC 3,663 ms
110,284 KB
testcase_21 AC 1,360 ms
51,800 KB
testcase_22 AC 3,212 ms
89,788 KB
testcase_23 AC 2,113 ms
83,648 KB
testcase_24 AC 1,562 ms
50,804 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()
D = map(int, raw_input().split())
done = 2**N-1

mem = {}
def rec(b, hp, maxhp):
    if (b, hp) in mem:
        return mem[(b, hp)]
    if b == done:
        return hp
    m = 0
    for i in xrange(N):
        if (1<<i) & b:
            continue
        if D[i] > 0:
            m = max(m, rec(b+(1<<i), min(hp+D[i], maxhp), maxhp))
        elif hp + D[i] > 0:
            m = max(m, rec(b+(1<<i), hp+D[i], maxhp+100))

    mem[(b, hp)] = m
    return m

print rec(0, 100, 100)
0