結果

問題 No.288 貯金箱の仕事
ユーザー te-shte-sh
提出日時 2017-06-08 15:54:39
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 1,002 ms / 2,000 ms
コード長 774 bytes
コンパイル時間 1,581 ms
コンパイル使用メモリ 151,808 KB
実行使用メモリ 493,988 KB
最終ジャッジ日時 2024-06-12 19:49:15
合計ジャッジ時間 15,062 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 1 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 1,002 ms
493,924 KB
testcase_24 AC 454 ms
248,536 KB
testcase_25 AC 5 ms
6,944 KB
testcase_26 AC 5 ms
6,940 KB
testcase_27 AC 4 ms
6,944 KB
testcase_28 AC 4 ms
6,940 KB
testcase_29 AC 4 ms
6,940 KB
testcase_30 AC 224 ms
127,800 KB
testcase_31 AC 223 ms
127,824 KB
testcase_32 AC 449 ms
250,560 KB
testcase_33 AC 449 ms
250,496 KB
testcase_34 AC 676 ms
371,692 KB
testcase_35 AC 686 ms
371,724 KB
testcase_36 AC 906 ms
493,988 KB
testcase_37 AC 254 ms
140,648 KB
testcase_38 AC 611 ms
336,320 KB
testcase_39 AC 303 ms
165,148 KB
testcase_40 AC 302 ms
170,060 KB
testcase_41 AC 862 ms
472,320 KB
testcase_42 AC 752 ms
410,412 KB
testcase_43 AC 95 ms
57,240 KB
testcase_44 AC 118 ms
84,776 KB
testcase_45 AC 451 ms
266,832 KB
testcase_46 AC 686 ms
415,392 KB
testcase_47 AC 310 ms
203,788 KB
testcase_48 AC 456 ms
286,024 KB
testcase_49 AC 150 ms
110,280 KB
testcase_50 AC 243 ms
177,164 KB
testcase_51 AC 163 ms
118,636 KB
testcase_52 AC 336 ms
226,992 KB
testcase_53 AC 459 ms
295,496 KB
testcase_54 AC 228 ms
165,732 KB
testcase_55 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

const inf = 10 ^^ 9;

void main()
{
  auto rd = readln.split, n = rd[0].to!size_t, m = rd[1].to!long;
  auto ai = readln.split.to!(int[]);
  auto ki = readln.split.to!(long[]);

  auto b = zip(ai, ki).map!"a[0] * a[1]".sum;
  if (b < m) {
    writeln(-1);
    return;
  }

  auto c = b - m;
  auto r = max((c - ai[$-1] ^^ 2) / ai[$-1], 0);
  c -= r * ai[$-1];

  auto dp = new int[][](n+1, c+1);
  foreach (ref dpi; dp) dpi[] = inf;
  dp[0][0] = 0;

  foreach (i; 0..n) {
    foreach (j; 0..c+1) {
      dp[i+1][j] = dp[i][j];
      if (j >= ai[i])
        dp[i+1][j] = min(dp[i+1][j], dp[i+1][j-ai[i]] + 1);
    }
  }

  auto s = dp[$-1][$-1];
  if (s == inf)
    writeln(-1);
  else
    writeln(r + s);
}
0