結果

問題 No.196 典型DP (1)
ユーザー scalerscaler
提出日時 2024-09-02 11:44:39
言語 Scala(Beta)
(3.4.0)
結果
RE  
実行時間 -
コード長 1,114 bytes
コンパイル時間 9,800 ms
コンパイル使用メモリ 262,316 KB
実行使用メモリ 92,840 KB
最終ジャッジ日時 2024-09-02 11:45:42
合計ジャッジ時間 62,401 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 953 ms
65,736 KB
testcase_01 AC 980 ms
65,468 KB
testcase_02 AC 959 ms
65,600 KB
testcase_03 AC 941 ms
65,536 KB
testcase_04 AC 941 ms
65,776 KB
testcase_05 AC 895 ms
65,700 KB
testcase_06 AC 954 ms
65,664 KB
testcase_07 AC 943 ms
65,592 KB
testcase_08 AC 956 ms
65,528 KB
testcase_09 AC 987 ms
65,492 KB
testcase_10 AC 964 ms
65,736 KB
testcase_11 AC 1,002 ms
65,660 KB
testcase_12 AC 983 ms
65,804 KB
testcase_13 AC 1,018 ms
65,696 KB
testcase_14 AC 1,001 ms
65,996 KB
testcase_15 AC 1,104 ms
66,216 KB
testcase_16 AC 1,111 ms
66,164 KB
testcase_17 AC 1,166 ms
66,276 KB
testcase_18 AC 1,140 ms
66,472 KB
testcase_19 AC 1,173 ms
66,376 KB
testcase_20 AC 1,189 ms
66,192 KB
testcase_21 AC 1,172 ms
66,164 KB
testcase_22 AC 1,194 ms
66,372 KB
testcase_23 RE -
testcase_24 AC 1,292 ms
92,840 KB
testcase_25 AC 1,313 ms
87,256 KB
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 AC 1,303 ms
68,680 KB
testcase_32 AC 1,313 ms
68,600 KB
testcase_33 AC 1,298 ms
68,404 KB
testcase_34 AC 1,289 ms
68,548 KB
testcase_35 AC 1,306 ms
68,492 KB
testcase_36 AC 1,293 ms
68,628 KB
testcase_37 AC 1,196 ms
66,404 KB
testcase_38 AC 1,292 ms
68,620 KB
testcase_39 AC 1,297 ms
68,720 KB
testcase_40 AC 1,304 ms
68,584 KB
testcase_41 AC 947 ms
65,596 KB
testcase_42 AC 973 ms
65,660 KB
testcase_43 AC 965 ms
65,852 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import scala.io.StdIn.readLine
import scala.collection.mutable.ArrayBuffer

@main
def yuki196(): Unit =
  val MOD = 1000000007L
  val Array(n, k) = readLine.split(" ").map(_.toInt)
  val graph = Array.fill(n)(ArrayBuffer[Long]())
  for
    _ <- 1 until n
  do
    val Array(u, v) = readLine.split(" ").map(_.toInt)
    graph(u).append(v)
    graph(v).append(u)
  
  val visited = Array.fill(n)(false)
  val size = Array.fill(n)(0)
  val dp = Array.fill(n)(ArrayBuffer[Long]())

  def dfs(cur: Long): Unit =
    visited(cur.toInt) = true
    size(cur.toInt) = 1
    var dpCur: ArrayBuffer[Long] = ArrayBuffer(1)
    for
      next <- graph(cur.toInt)
      if !visited(next.toInt)
    do
      dfs(next)
      val dpNext = dp(next.toInt)
      val ndp = ArrayBuffer.fill(size(cur.toInt) + size(next.toInt) - 1)(0L)
      for
        i <- dpCur.indices
        j <- dpNext.indices
      do
        ndp(i + j) = (ndp(i + j) + dpCur(i) * dpNext(j)) % MOD
      dpCur = ndp
      size(cur.toInt) += size(next.toInt) - 1
    dpCur.append(1)
    size(cur.toInt) += 1
    dp(cur.toInt) = dpCur
  dfs(0)
  println(dp(0)(k))
0