結果

問題 No.107 モンスター
ユーザー nobuta05nobuta05
提出日時 2022-04-02 11:10:39
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 20 ms / 5,000 ms
コード長 1,776 bytes
コンパイル時間 791 ms
コンパイル使用メモリ 95,468 KB
実行使用メモリ 16,936 KB
最終ジャッジ日時 2023-09-04 16:35:56
合計ジャッジ時間 2,092 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 1 ms
4,376 KB
testcase_04 AC 1 ms
4,384 KB
testcase_05 AC 1 ms
4,376 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 2 ms
4,384 KB
testcase_08 AC 1 ms
4,380 KB
testcase_09 AC 1 ms
4,376 KB
testcase_10 AC 1 ms
4,376 KB
testcase_11 AC 1 ms
4,380 KB
testcase_12 AC 1 ms
4,380 KB
testcase_13 AC 6 ms
6,560 KB
testcase_14 AC 11 ms
9,928 KB
testcase_15 AC 11 ms
10,488 KB
testcase_16 AC 1 ms
4,376 KB
testcase_17 AC 4 ms
4,376 KB
testcase_18 AC 18 ms
16,892 KB
testcase_19 AC 18 ms
16,896 KB
testcase_20 AC 6 ms
6,284 KB
testcase_21 AC 6 ms
6,784 KB
testcase_22 AC 11 ms
10,196 KB
testcase_23 AC 20 ms
16,936 KB
testcase_24 AC 19 ms
16,608 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