結果

問題 No.1457 ツブ消ししとるなHard
ユーザー fukafukatanifukafukatani
提出日時 2021-06-23 22:07:12
言語 Scala(Beta)
(3.4.0)
結果
WA  
実行時間 -
コード長 820 bytes
コンパイル時間 12,643 ms
コンパイル使用メモリ 262,908 KB
実行使用メモリ 66,792 KB
最終ジャッジ日時 2024-06-24 22:29:07
合計ジャッジ時間 33,294 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 964 ms
66,668 KB
testcase_01 AC 908 ms
65,324 KB
testcase_02 AC 960 ms
66,348 KB
testcase_03 AC 943 ms
65,972 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 909 ms
65,460 KB
testcase_08 AC 916 ms
65,344 KB
testcase_09 AC 998 ms
66,484 KB
testcase_10 AC 999 ms
66,328 KB
testcase_11 AC 970 ms
66,508 KB
testcase_12 AC 1,010 ms
66,296 KB
testcase_13 AC 992 ms
66,332 KB
testcase_14 AC 967 ms
66,432 KB
testcase_15 AC 997 ms
66,724 KB
testcase_16 AC 990 ms
66,556 KB
testcase_17 AC 916 ms
65,372 KB
testcase_18 AC 959 ms
66,312 KB
testcase_19 WA -
testcase_20 AC 948 ms
66,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner

object Main extends App {
  val sc = new Scanner(System.in)
  val n, m, x, y, z = sc.nextInt
  val a = List.fill(n)(sc.nextInt).filter(_ > y)

  val init = a.filter(_ >= x).sum
  val init_use = a.count(_ >= x)

  if (init_use > m) {
    println("Handicapped")
  } else {
    val b = a.filter(_ < x)
    val dp = Array.fill(b.size + 1, n * 50 + 1)(0)
    dp(0)(0) = 1
    for (bnum <- b; prev_used <- b.indices.reverse; prev_sum <- 0 to m * 50 - bnum) {
      dp(prev_used + 1)(prev_sum + bnum) += dp(prev_used )(prev_sum)
    }
    // dp.foreach(s => Console.err.println(s.mkString(" ")))
    val ans = (1 to m - init_use).map(i =>
      if (z * (i + init_use) < init || i >= dp.size) {
        0
      } else {
        dp(i)(z * (i + init_use) - init)
      }
    ).sum
    println(ans)
  }
}
0