結果

問題 No.196 典型DP (1)
ユーザー scalerscaler
提出日時 2024-09-02 11:39:14
言語 Scala(Beta)
(3.4.0)
結果
WA  
実行時間 -
コード長 1,024 bytes
コンパイル時間 10,890 ms
コンパイル使用メモリ 265,460 KB
実行使用メモリ 104,568 KB
最終ジャッジ日時 2024-09-02 11:40:21
合計ジャッジ時間 64,016 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 949 ms
65,580 KB
testcase_01 AC 958 ms
65,660 KB
testcase_02 AC 947 ms
65,580 KB
testcase_03 AC 937 ms
65,504 KB
testcase_04 AC 925 ms
65,604 KB
testcase_05 AC 945 ms
65,680 KB
testcase_06 AC 949 ms
65,628 KB
testcase_07 AC 924 ms
65,508 KB
testcase_08 AC 936 ms
65,740 KB
testcase_09 AC 952 ms
65,536 KB
testcase_10 AC 962 ms
65,700 KB
testcase_11 AC 965 ms
65,796 KB
testcase_12 WA -
testcase_13 AC 947 ms
65,688 KB
testcase_14 AC 995 ms
65,644 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 AC 1,298 ms
75,156 KB
testcase_32 AC 1,328 ms
75,104 KB
testcase_33 AC 1,324 ms
75,180 KB
testcase_34 AC 1,340 ms
75,108 KB
testcase_35 AC 1,327 ms
75,076 KB
testcase_36 AC 1,335 ms
74,552 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 AC 1,453 ms
76,912 KB
testcase_41 AC 959 ms
65,688 KB
testcase_42 AC 970 ms
65,652 KB
testcase_43 AC 954 ms
65,452 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

@main
def yuki196(): Unit =
  val MOD = 1000000007
  val Array(n, k) = readLine.split(" ").map(_.toInt)
  val graph = Array.fill(n)(ArrayBuffer[Int]())
  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[Int]())

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