結果

問題 No.107 モンスター
ユーザー te-shte-sh
提出日時 2017-01-27 17:42:05
言語 D
(dmd 2.106.1)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,006 bytes
コンパイル時間 748 ms
コンパイル使用メモリ 102,000 KB
実行使用メモリ 45,440 KB
最終ジャッジ日時 2024-06-12 06:40:41
合計ジャッジ時間 3,482 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 RE -
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 1 ms
5,376 KB
testcase_13 AC 20 ms
7,296 KB
testcase_14 AC 66 ms
16,512 KB
testcase_15 AC 66 ms
16,384 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 14 ms
5,376 KB
testcase_18 AC 19 ms
15,488 KB
testcase_19 AC 20 ms
15,488 KB
testcase_20 AC 439 ms
45,440 KB
testcase_21 AC 148 ms
23,424 KB
testcase_22 AC 361 ms
43,136 KB
testcase_23 AC 237 ms
43,776 KB
testcase_24 AC 175 ms
33,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.algorithm, std.conv, std.range, std.stdio, std.string;

void main()
{
  auto n = readln.chomp.to!size_t;
  auto di = readln.split.to!(int[]);

  auto dp = new int[int][][](1 << n, n + 1);

  int calc(int s, int lv, int hp) {
    if (hp in dp[s][lv]) {
      return dp[s][lv][hp];
    } else if (s == 0) {
      return dp[s][lv][hp] = hp;
    } else {
      auto maxHp = 0;
      foreach (j; 0..n) {
        if (bitTest(s, j)) {
          auto ns = bitReset(s, j);
          auto nhp = 0;
          if (di[j] > 0) {
            nhp = calc(ns, lv, min(hp + di[j], lv * 100));
          } else {
            if (hp <= -di[j])
              nhp = 0;
            else
              nhp = calc(ns, lv + 1, hp + di[j]);
          }
          maxHp = max(maxHp, nhp);
        }
      }
      return dp[s][lv][hp] = maxHp;
    }
  }

  writeln(calc((1 << n) - 1, 1, 100));
}

bool bitTest(T)(T n, size_t i) { return (n & (1.to!T << i)) != 0; }
T bitReset(T)(T n, size_t i) { return n & ~(1.to!T << i); }
0