結果

問題 No.115 遠足のおやつ
ユーザー te-shte-sh
提出日時 2017-01-30 12:12:29
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 173 ms / 5,000 ms
コード長 747 bytes
コンパイル時間 760 ms
コンパイル使用メモリ 102,172 KB
実行使用メモリ 35,468 KB
最終ジャッジ日時 2024-06-12 06:42:04
合計ジャッジ時間 2,418 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 6 ms
6,940 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 50 ms
19,256 KB
testcase_05 AC 1 ms
6,940 KB
testcase_06 AC 1 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 6 ms
6,940 KB
testcase_10 AC 6 ms
6,940 KB
testcase_11 AC 1 ms
6,940 KB
testcase_12 AC 3 ms
6,940 KB
testcase_13 AC 1 ms
6,944 KB
testcase_14 AC 3 ms
6,944 KB
testcase_15 AC 35 ms
14,124 KB
testcase_16 AC 46 ms
18,040 KB
testcase_17 AC 12 ms
6,944 KB
testcase_18 AC 1 ms
6,944 KB
testcase_19 AC 4 ms
6,940 KB
testcase_20 AC 3 ms
6,944 KB
testcase_21 AC 1 ms
6,940 KB
testcase_22 AC 25 ms
8,316 KB
testcase_23 AC 5 ms
6,944 KB
testcase_24 AC 22 ms
7,796 KB
testcase_25 AC 13 ms
7,216 KB
testcase_26 AC 6 ms
6,944 KB
testcase_27 AC 9 ms
6,940 KB
testcase_28 AC 5 ms
6,940 KB
testcase_29 AC 9 ms
6,944 KB
testcase_30 AC 22 ms
7,820 KB
testcase_31 AC 6 ms
6,944 KB
testcase_32 AC 36 ms
16,072 KB
testcase_33 AC 3 ms
6,940 KB
testcase_34 AC 52 ms
17,632 KB
testcase_35 AC 13 ms
6,944 KB
testcase_36 AC 20 ms
7,064 KB
testcase_37 AC 39 ms
16,664 KB
testcase_38 AC 162 ms
35,468 KB
testcase_39 AC 173 ms
34,688 KB
testcase_40 AC 1 ms
5,376 KB
testcase_41 AC 1 ms
5,376 KB
testcase_42 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

void main()
{
  auto rd = readln.split.to!(int[]), n = rd[0], d = rd[1], k = rd[2];

  auto dp = new int[][][][](n+1, k+1, d+1);
  foreach (i; 0..n+1)
    dp[i][0][0] = [0];

  foreach (i; 1..n+1)
    foreach (j; 1..k+1)
      foreach (e; 0..d+1) {
        auto c1 = e >= i ? dp[i-1][j-1][e-i] ~ i : [i];
        auto c2 = dp[i-1][j][e];
        if (c1.front == 0) {
          if (!c2.empty)
            dp[i][j][e] = min(c1, c2);
          else
            dp[i][j][e] = c1;
        } else {
          if (!c2.empty)
            dp[i][j][e] = c2;
        }
      }

  auto r = dp[n][k][d];
  if (r.empty)
    writeln(-1);
  else
    writeln(r.drop(1).to!(string[]).join(" "));
}
0