結果

問題 No.158 奇妙なお使い
ユーザー te-shte-sh
提出日時 2016-09-08 12:41:42
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 89 ms / 5,000 ms
コード長 1,825 bytes
コンパイル時間 739 ms
コンパイル使用メモリ 120,680 KB
実行使用メモリ 61,952 KB
最終ジャッジ日時 2024-06-12 04:14:10
合計ジャッジ時間 3,466 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
11,972 KB
testcase_01 AC 38 ms
31,104 KB
testcase_02 AC 8 ms
5,632 KB
testcase_03 AC 54 ms
51,072 KB
testcase_04 AC 89 ms
61,952 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 74 ms
61,824 KB
testcase_07 AC 1 ms
5,376 KB
testcase_08 AC 31 ms
26,624 KB
testcase_09 AC 60 ms
54,016 KB
testcase_10 AC 62 ms
53,632 KB
testcase_11 AC 65 ms
55,680 KB
testcase_12 AC 39 ms
31,232 KB
testcase_13 AC 41 ms
31,616 KB
testcase_14 AC 61 ms
52,864 KB
testcase_15 AC 72 ms
61,824 KB
testcase_16 AC 74 ms
61,952 KB
testcase_17 AC 73 ms
61,952 KB
testcase_18 AC 41 ms
31,616 KB
testcase_19 AC 55 ms
51,524 KB
testcase_20 AC 64 ms
55,424 KB
testcase_21 AC 70 ms
61,824 KB
testcase_22 AC 70 ms
61,952 KB
testcase_23 AC 64 ms
55,424 KB
testcase_24 AC 69 ms
61,824 KB
testcase_25 AC 61 ms
53,888 KB
testcase_26 AC 31 ms
26,368 KB
testcase_27 AC 42 ms
33,572 KB
testcase_28 AC 52 ms
37,888 KB
testcase_29 AC 39 ms
31,360 KB
testcase_30 AC 44 ms
34,176 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.algorithm, std.array, std.container, std.range, std.bitmanip;
import std.numeric, std.math, std.bigint, std.random, core.bitop;
import std.string, std.regex, std.conv, std.stdio, std.typecons;

void main()
{
  auto rd1 = readln.split.map!(to!int);
  auto a3 = rd1[0], a2 = rd1[1], a0 = rd1[2];
  auto db = readln.chomp.to!int;
  auto rd2 = readln.split.map!(to!int);
  auto b3 = rd2[0], b2 = rd2[1], b0 = rd2[2];
  auto dc = readln.chomp.to!int;
  auto rd3 = readln.split.map!(to!int);
  auto c3 = rd3[0], c2 = rd3[1], c0 = rd3[2];

  auto at = total(a3, a2, a0), maxA3 = at / 1000, maxA2 = at / 100;
  auto bt = total(b3, b2, b0);
  auto ct = total(c3, c2, c0);

  auto memo = new int[][][](at + 1, maxA3 + 1, maxA2 + 1);
  memo[total(a3, a2, a0)][a3][a2] = 1;

  void pay(int d, int i, int j, int k, int et, int e3, int e2) {
    if (canPay(d, i, j, k)) {
      auto i2 = i - d;
      auto jp = min(d / 1000, j);
      auto j2 = j - jp;
      auto k2 = k - min((d - jp * 1000) / 100, k);
      memo[i2 + et][j2 + e3][k2 + e2] = max(memo[i2 + et][j2 + e3][k2 + e2], memo[i][j][k] + 1);
    }
  }

  foreach_reverse (i; 1..at + 1)
    foreach (j; 0..maxA3 + 1)
      foreach (k; 0..maxA2 + 1)
        if (memo[i][j][k]) {
          pay(db, i, j, k, bt, b3, b2);
          pay(dc, i, j, k, ct, c3, c2);
        }

  auto maxC = 0;
  foreach (i; 1..at + 1)
    foreach (j; 0..maxA3 + 1)
      foreach (k; 0..maxA2 + 1)
        maxC = max(maxC, memo[i][j][k]);

  writeln(maxC - 1);
}

int total(int a3, int a2, int a0)
{
  return a3 * 1000 + a2 * 100 + a0;
}

bool canPay(int d, int i, int j, int k)
{
  auto a3 = j, a2 = k, a0 = i - j * 1000 - k * 100;

  if (d > i) return false;

  if (d % 100 > a0) return false;
  a0 -= d % 100;
  a2 += a0 / 100;
  d /= 100;

  if (d % 10 > a2) return false;

  return true;
}
0