結果

問題 No.1457 ツブ消ししとるなHard
ユーザー fukafukatanifukafukatani
提出日時 2021-06-23 22:15:23
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,070 ms / 2,000 ms
コード長 851 bytes
コンパイル時間 13,298 ms
コンパイル使用メモリ 264,704 KB
実行使用メモリ 66,676 KB
最終ジャッジ日時 2024-06-24 22:38:38
合計ジャッジ時間 35,323 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 978 ms
66,400 KB
testcase_01 AC 911 ms
65,236 KB
testcase_02 AC 963 ms
66,532 KB
testcase_03 AC 943 ms
66,100 KB
testcase_04 AC 1,070 ms
66,440 KB
testcase_05 AC 1,061 ms
66,420 KB
testcase_06 AC 1,063 ms
66,676 KB
testcase_07 AC 926 ms
65,336 KB
testcase_08 AC 919 ms
65,232 KB
testcase_09 AC 1,001 ms
66,484 KB
testcase_10 AC 1,000 ms
66,656 KB
testcase_11 AC 971 ms
66,452 KB
testcase_12 AC 1,014 ms
66,248 KB
testcase_13 AC 998 ms
66,556 KB
testcase_14 AC 991 ms
66,476 KB
testcase_15 AC 1,010 ms
66,628 KB
testcase_16 AC 1,012 ms
66,576 KB
testcase_17 AC 919 ms
65,344 KB
testcase_18 AC 966 ms
66,460 KB
testcase_19 AC 1,052 ms
66,628 KB
testcase_20 AC 968 ms
66,556 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)(0l)
    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 = (0 to m - init_use).map(i =>
      if (z * (i + init_use) < init || i >= dp.size || (i == 0 && init_use == 0)) {
        0l
      } else {
        dp(i)(z * (i + init_use) - init)
      }
    ).sum
    println(ans)
  }
}
0