結果

問題 No.107 モンスター
ユーザー nobuta05
提出日時 2022-04-02 11:10:39
言語 D
(dmd 2.109.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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

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