結果

問題 No.1878 union-find の数え上げ
ユーザー yudedakoyudedako
提出日時 2022-04-18 15:23:27
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,156 ms / 2,000 ms
コード長 844 bytes
コンパイル時間 11,815 ms
コンパイル使用メモリ 255,012 KB
実行使用メモリ 87,076 KB
最終ジャッジ日時 2024-06-09 07:02:08
合計ジャッジ時間 26,635 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,109 ms
87,076 KB
testcase_01 AC 1,122 ms
83,284 KB
testcase_02 AC 1,112 ms
83,356 KB
testcase_03 AC 1,156 ms
83,120 KB
testcase_04 AC 1,144 ms
82,992 KB
testcase_05 AC 981 ms
67,444 KB
testcase_06 AC 982 ms
68,184 KB
testcase_07 AC 800 ms
63,660 KB
testcase_08 AC 793 ms
63,672 KB
testcase_09 AC 784 ms
63,732 KB
testcase_10 AC 803 ms
63,572 KB
testcase_11 AC 803 ms
63,712 KB
testcase_12 AC 802 ms
63,612 KB
testcase_13 AC 786 ms
63,832 KB
testcase_14 AC 1,055 ms
79,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter
import scala.collection.mutable.*
import scala.io.StdIn.*
import scala.util.chaining.*
import scala.math.*
import scala.reflect.ClassTag
import scala.util.*
import scala.annotation.tailrec
import scala.collection.mutable
import scala.language.strictEquality

@main def main =
  inline val MOD = 998244353
  val n = readLine.toInt
  val parent = Array.fill(n - 1){readLine.toInt - 1}
  val children = Array.fill(n){ArrayBuffer[Int]()}
  for (p, i) <- parent.zipWithIndex do
    children(p).addOne(i + 1)
  val depth = Array.fill(n){0}
  val queue = mutable.ArrayDeque[Int](0)
  while queue.nonEmpty do
    val top = queue.removeHead()
    for child <- children(top) do
      depth(child) = depth(top) + 1
      queue.append(child)
  val result = depth.foldLeft(1L){(acc, v) => acc * max(v, 1) % MOD}
  println(result)
0