結果

問題 No.1457 ツブ消ししとるなHard
ユーザー fukafukatanifukafukatani
提出日時 2021-06-23 22:08:53
言語 Scala(Beta)
(3.4.0)
結果
WA  
実行時間 -
コード長 828 bytes
コンパイル時間 14,357 ms
コンパイル使用メモリ 262,736 KB
実行使用メモリ 66,668 KB
最終ジャッジ日時 2024-06-24 22:31:45
合計ジャッジ時間 33,889 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 944 ms
66,224 KB
testcase_01 AC 895 ms
65,232 KB
testcase_02 AC 940 ms
66,544 KB
testcase_03 AC 932 ms
65,776 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 922 ms
65,288 KB
testcase_08 AC 896 ms
64,996 KB
testcase_09 AC 988 ms
66,568 KB
testcase_10 AC 997 ms
66,520 KB
testcase_11 AC 962 ms
66,368 KB
testcase_12 AC 1,005 ms
66,140 KB
testcase_13 AC 975 ms
66,328 KB
testcase_14 AC 964 ms
66,308 KB
testcase_15 AC 983 ms
66,668 KB
testcase_16 AC 986 ms
66,484 KB
testcase_17 AC 902 ms
65,124 KB
testcase_18 AC 955 ms
66,380 KB
testcase_19 WA -
testcase_20 AC 948 ms
66,168 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) {
        0l
      } else {
        dp(i)(z * (i + init_use) - init).toLong
      }
    ).sum
    println(ans)
  }
}
0