結果

問題 No.1637 Easy Tree Query
ユーザー 箱星箱星
提出日時 2021-08-06 21:40:47
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 1,010 ms / 2,000 ms
コード長 1,384 bytes
コンパイル時間 15,447 ms
コンパイル使用メモリ 441,280 KB
実行使用メモリ 126,924 KB
最終ジャッジ日時 2024-09-17 03:49:08
合計ジャッジ時間 40,808 ms
ジャッジサーバーID
(参考情報)
judge6 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 292 ms
58,416 KB
testcase_01 AC 291 ms
58,548 KB
testcase_02 AC 1,010 ms
108,916 KB
testcase_03 AC 287 ms
58,592 KB
testcase_04 AC 558 ms
80,208 KB
testcase_05 AC 683 ms
90,984 KB
testcase_06 AC 613 ms
86,528 KB
testcase_07 AC 500 ms
72,032 KB
testcase_08 AC 531 ms
76,100 KB
testcase_09 AC 694 ms
91,236 KB
testcase_10 AC 577 ms
78,292 KB
testcase_11 AC 777 ms
99,724 KB
testcase_12 AC 728 ms
90,972 KB
testcase_13 AC 505 ms
72,008 KB
testcase_14 AC 681 ms
90,660 KB
testcase_15 AC 828 ms
102,208 KB
testcase_16 AC 720 ms
99,612 KB
testcase_17 AC 535 ms
74,156 KB
testcase_18 AC 666 ms
90,756 KB
testcase_19 AC 679 ms
90,788 KB
testcase_20 AC 753 ms
90,920 KB
testcase_21 AC 658 ms
90,604 KB
testcase_22 AC 904 ms
100,476 KB
testcase_23 AC 542 ms
76,348 KB
testcase_24 AC 617 ms
86,928 KB
testcase_25 AC 676 ms
90,840 KB
testcase_26 AC 777 ms
92,956 KB
testcase_27 AC 896 ms
101,068 KB
testcase_28 AC 634 ms
90,800 KB
testcase_29 AC 748 ms
90,756 KB
testcase_30 AC 574 ms
82,440 KB
testcase_31 AC 578 ms
84,624 KB
testcase_32 AC 583 ms
82,308 KB
testcase_33 AC 655 ms
90,692 KB
testcase_34 AC 730 ms
126,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter
import java.util.*
import kotlin.math.*

fun PrintWriter.solve() {
    val n = nextInt()
    val q = nextInt()
    val adj = Array(n) { mutableListOf<Int>() }
    for (i in 0 until n - 1) {
        val v1 = nextInt() - 1
        val v2 = nextInt() - 1
        adj[v1].add(v2)
        adj[v2].add(v1)
    }
    val size = Array(n) { 1 }
    fun dfs(v: Int, p: Int): Int {
        for (w in adj[v]) {
            if (w != p) {
                size[v] += dfs(w, v)
            }
        }
        return size[v]
    }
    dfs(0, -1)
    var sum = 0L
    for (i in 0 until q) {
        val p = nextInt() - 1
        val x = nextLong()
        sum += size[p] * x
        println(sum)
    }
}

fun main2() {
    val writer = PrintWriter(System.out, false)
    writer.solve()
    writer.flush()
}

fun main() = Thread(null, ::main2, "", 64 * 1024 * 1024)
        .apply { setUncaughtExceptionHandler { _, e -> e.printStackTrace(); kotlin.system.exitProcess(1) } }
        .apply { start() }.join()

// region Scanner
private var st = StringTokenizer("")
private val br = System.`in`.bufferedReader()

fun next(): String {
    while (!st.hasMoreTokens()) st = StringTokenizer(br.readLine())
    return st.nextToken()
}

fun nextInt() = next().toInt()
fun nextLong() = next().toLong()
fun nextLine() = br.readLine()
fun nextDouble() = next().toDouble()
// endregion
0