結果

問題 No.107 モンスター
ユーザー nobuta05nobuta05
提出日時 2022-04-02 11:10:39
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 18 ms / 5,000 ms
コード長 1,776 bytes
コンパイル時間 748 ms
コンパイル使用メモリ 105,900 KB
実行使用メモリ 16,924 KB
最終ジャッジ日時 2024-06-22 14:46:52
合計ジャッジ時間 1,677 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 1 ms
6,944 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 1 ms
6,944 KB
testcase_13 AC 5 ms
6,944 KB
testcase_14 AC 9 ms
8,884 KB
testcase_15 AC 8 ms
8,860 KB
testcase_16 AC 1 ms
6,940 KB
testcase_17 AC 3 ms
6,940 KB
testcase_18 AC 15 ms
16,832 KB
testcase_19 AC 15 ms
16,432 KB
testcase_20 AC 6 ms
6,944 KB
testcase_21 AC 5 ms
6,948 KB
testcase_22 AC 9 ms
10,456 KB
testcase_23 AC 16 ms
16,924 KB
testcase_24 AC 18 ms
16,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.string, std.conv;
import std.algorithm, std.math;
import std.range;
import std.container.rbtree, std.container.dlist;
import std.container.binaryheap, std.container.array;
import std.typecons;

alias mstring = char[];
const long INF = 1L << 60L;
const long mod = 1_000_000_000 + 7;

void chmin (T)(ref T x, T y) {
  x = min(x, y);
}

void chmax (T)(ref T x, T y) {
  x = max(x, y);
}

// 単一の数値を取得
// readln.chomp.to!int;
//  or
// int a;
// readf("%s\n", a);

// 複数の数値を取得(可変数個の場合推奨)
// readln.chomp.split.map!(to!long).array

// 複数の数値を取得(固定数個の場合、推奨)
// int a, b;
// readf("%s %s\n", &a, &b);

// インデントを一個ずらして複数の数値を取得(累積和とかで1-indexedの方が良い時がある)
// long[] vs = readln.chomp.split.map!(to!long).array;
// vs = [0L] ~ vs;

// 小数点は以下で指定
// double ret = 10.0;
// writefln("%.12f", ret);

// 配列の最後の要素は arr[$-1] でアクセスできる

void main () {
  int N = readln.chomp.to!int;
  auto ds = readln.chomp.split.map!(to!long).array;
  ds = [0L] ~ ds;

  auto dp = new long[][](1 << N, N + 2);

  dp[0][1] = 100L;
  foreach (s; 0 .. (1 << N))
    foreach (k; 1 .. N + 1) {
      if (dp[s][k] <= 0L)
        continue;

      foreach (i; 1 .. N + 1) {
        long d = ds[i];
        if (s & (1 << (i - 1)))
          continue;
        if (d < 0 && dp[s][k] + d <= 0)
          continue;

        if (d > 0)
          chmax (dp[s | (1 << (i - 1))][k], min(k * 100L, dp[s][k] + d));
        else
          chmax(dp[s | (1 << (i - 1))][k + 1], dp[s][k] + d);
      }
    }

  long ret = 0L;
  foreach (k; 1 .. N + 2)
    chmax (ret, dp[(1 << N) - 1][k]);
  writeln(ret);
}
0