結果

問題 No.1878 union-find の数え上げ
ユーザー yudedakoyudedako
提出日時 2022-04-18 15:23:27
言語 Scala(Beta)
(3.6.2)
結果
AC  
実行時間 1,516 ms / 2,000 ms
コード長 844 bytes
コンパイル時間 14,120 ms
コンパイル使用メモリ 269,684 KB
実行使用メモリ 87,528 KB
最終ジャッジ日時 2024-12-29 09:50:47
合計ジャッジ時間 35,299 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,398 ms
87,528 KB
testcase_01 AC 1,456 ms
83,168 KB
testcase_02 AC 1,516 ms
83,396 KB
testcase_03 AC 1,463 ms
83,232 KB
testcase_04 AC 1,488 ms
82,864 KB
testcase_05 AC 1,277 ms
67,472 KB
testcase_06 AC 1,247 ms
67,808 KB
testcase_07 AC 1,016 ms
63,596 KB
testcase_08 AC 1,001 ms
63,564 KB
testcase_09 AC 1,005 ms
63,496 KB
testcase_10 AC 1,013 ms
63,716 KB
testcase_11 AC 1,006 ms
63,696 KB
testcase_12 AC 1,002 ms
63,660 KB
testcase_13 AC 1,011 ms
63,500 KB
testcase_14 AC 1,364 ms
79,544 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