結果

問題 No.1637 Easy Tree Query
ユーザー HimaHima
提出日時 2022-07-09 17:00:17
言語 Go
(1.22.1)
結果
AC  
実行時間 64 ms / 2,000 ms
コード長 1,283 bytes
コンパイル時間 16,043 ms
コンパイル使用メモリ 229,396 KB
実行使用メモリ 28,364 KB
最終ジャッジ日時 2024-06-09 23:52:40
合計ジャッジ時間 15,880 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 61 ms
18,052 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 21 ms
7,768 KB
testcase_05 AC 44 ms
12,068 KB
testcase_06 AC 31 ms
9,944 KB
testcase_07 AC 15 ms
7,644 KB
testcase_08 AC 18 ms
7,764 KB
testcase_09 AC 50 ms
12,488 KB
testcase_10 AC 24 ms
9,732 KB
testcase_11 AC 58 ms
16,240 KB
testcase_12 AC 50 ms
14,152 KB
testcase_13 AC 15 ms
6,940 KB
testcase_14 AC 35 ms
11,852 KB
testcase_15 AC 61 ms
14,104 KB
testcase_16 AC 54 ms
14,072 KB
testcase_17 AC 16 ms
7,772 KB
testcase_18 AC 47 ms
12,128 KB
testcase_19 AC 48 ms
14,024 KB
testcase_20 AC 56 ms
16,248 KB
testcase_21 AC 31 ms
9,880 KB
testcase_22 AC 60 ms
18,296 KB
testcase_23 AC 18 ms
7,648 KB
testcase_24 AC 26 ms
9,928 KB
testcase_25 AC 45 ms
9,996 KB
testcase_26 AC 60 ms
16,256 KB
testcase_27 AC 64 ms
18,268 KB
testcase_28 AC 29 ms
9,960 KB
testcase_29 AC 45 ms
14,132 KB
testcase_30 AC 22 ms
8,404 KB
testcase_31 AC 27 ms
9,952 KB
testcase_32 AC 20 ms
7,896 KB
testcase_33 AC 35 ms
9,940 KB
testcase_34 AC 38 ms
28,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"bufio"
	"fmt"
	"os"
	"strconv"
)

var sc = bufio.NewScanner(os.Stdin)
var out = bufio.NewWriter(os.Stdout)

func solve(n, q int, a, b, p, x []int) []int {
	// 0-index化は省略

	edge := make([][]int, n+1)
	for i := range a {
		edge[a[i]] = append(edge[a[i]], b[i])
		edge[b[i]] = append(edge[b[i]], a[i])
	}
	size := make([]int, n+1)
	var dfs func(cur, par int) int
	dfs = func(cur, par int) int {
		for _, next := range edge[cur] {
			if next == par {
				continue
			}
			size[cur] += dfs(next, cur)
		}
		size[cur]++
		return size[cur]
	}
	dfs(1, 0)
	sum := 0
	var ans []int
	for i := 0; i < q; i++ {
		sum += size[p[i]] * x[i]
		ans = append(ans, sum)
	}
	return ans
}

func main() {
	buf := make([]byte, 1024*1024)
	sc.Buffer(buf, bufio.MaxScanTokenSize)
	sc.Split(bufio.ScanWords)

	n, q := nextInt(), nextInt()
	var a, b []int
	for i := 0; i < n-1; i++ {
		a = append(a, nextInt())
		b = append(b, nextInt())
	}
	var p, x []int
	for i := 0; i < q; i++ {
		p = append(p, nextInt())
		x = append(x, nextInt())
	}
	ans := solve(n, q, a, b, p, x)
	PrintVertically(ans)
}

func nextInt() int {
	sc.Scan()
	i, _ := strconv.Atoi(sc.Text())
	return i
}

func PrintVertically(x []int) {
	defer out.Flush()
	for _, v := range x {
		fmt.Fprintln(out, v)
	}
}
0