結果
問題 | No.1843 Tree ANDistance |
ユーザー | yudedako |
提出日時 | 2022-02-28 17:50:08 |
言語 | Scala(Beta) (3.4.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,385 bytes |
コンパイル時間 | 11,039 ms |
コンパイル使用メモリ | 270,592 KB |
実行使用メモリ | 110,300 KB |
最終ジャッジ日時 | 2024-07-06 21:01:13 |
合計ジャッジ時間 | 22,024 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | TLE | - |
testcase_02 | TLE | - |
testcase_03 | TLE | - |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | AC | 1,118 ms
67,984 KB |
testcase_15 | AC | 1,103 ms
68,372 KB |
testcase_16 | AC | 1,056 ms
68,176 KB |
testcase_17 | AC | 1,056 ms
68,624 KB |
testcase_18 | AC | 1,061 ms
70,396 KB |
testcase_19 | AC | 1,080 ms
68,008 KB |
testcase_20 | AC | 1,070 ms
68,664 KB |
testcase_21 | AC | 840 ms
66,384 KB |
testcase_22 | AC | 834 ms
66,200 KB |
testcase_23 | AC | 875 ms
66,344 KB |
testcase_24 | AC | 849 ms
66,304 KB |
testcase_25 | AC | 844 ms
66,056 KB |
testcase_26 | AC | 840 ms
66,476 KB |
testcase_27 | AC | 875 ms
66,428 KB |
testcase_28 | TLE | - |
testcase_29 | AC | 1,928 ms
87,812 KB |
testcase_30 | TLE | - |
testcase_31 | TLE | - |
testcase_32 | TLE | - |
testcase_33 | AC | 1,670 ms
80,396 KB |
testcase_34 | AC | 1,964 ms
96,128 KB |
testcase_35 | AC | 848 ms
66,256 KB |
testcase_36 | AC | 839 ms
66,244 KB |
testcase_37 | AC | 846 ms
66,500 KB |
ソースコード
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 extension (value: Int) inline def isSet(digit: Int): Boolean = ((value >> digit) & 1) != 0 @main def main = inline val MOD = 1000000007 val n = readLine.toInt val edges = Array.fill(n - 1){ val Array(a, b, c) = readLine.split(' ').map(_.toInt) (a - 1, b - 1, c) } val graph = Array.fill(n){ArrayBuffer[(Int, Int)]()} for (a, b, c) <- edges do graph(a).addOne((b, c)) graph(b).addOne((a, c)) val depth = Array.fill(n){-1}.tap(_(0) = 0) val queue = Queue(0) while queue.nonEmpty do val top = queue.dequeue() for (next, _) <- graph(top) if depth(next) == -1 do depth(next) = depth(top) + 1 queue.enqueue(next) val fromLeaf = (0 until n).sortBy(depth)(using Ordering[Int].reverse) var result = 0L for d <- 0 until 30 do var onePath = 0L val endPath = Array.fill(n){0} for node <- fromLeaf do var count = 0 for (child, c) <- graph(node) if depth(child) > depth(node) && c.isSet(d) do onePath += (count + 1L) * (endPath(child) + 1L) % MOD count += endPath(child) + 1 endPath(node) = count result += (onePath % MOD << d) % MOD println(result % MOD)