結果

問題 No.1637 Easy Tree Query
ユーザー tentententen
提出日時 2022-09-29 10:47:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 529 ms / 2,000 ms
コード長 1,951 bytes
コンパイル時間 2,411 ms
コンパイル使用メモリ 78,324 KB
実行使用メモリ 94,060 KB
最終ジャッジ日時 2024-06-02 02:01:07
合計ジャッジ時間 18,210 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
50,092 KB
testcase_01 AC 48 ms
50,376 KB
testcase_02 AC 468 ms
78,052 KB
testcase_03 AC 49 ms
50,404 KB
testcase_04 AC 275 ms
62,040 KB
testcase_05 AC 384 ms
65,996 KB
testcase_06 AC 305 ms
63,196 KB
testcase_07 AC 217 ms
55,560 KB
testcase_08 AC 242 ms
60,944 KB
testcase_09 AC 426 ms
71,748 KB
testcase_10 AC 266 ms
60,092 KB
testcase_11 AC 474 ms
73,724 KB
testcase_12 AC 431 ms
70,572 KB
testcase_13 AC 202 ms
57,828 KB
testcase_14 AC 381 ms
67,556 KB
testcase_15 AC 442 ms
73,588 KB
testcase_16 AC 455 ms
73,572 KB
testcase_17 AC 240 ms
58,932 KB
testcase_18 AC 373 ms
66,000 KB
testcase_19 AC 369 ms
65,336 KB
testcase_20 AC 462 ms
71,012 KB
testcase_21 AC 339 ms
64,988 KB
testcase_22 AC 529 ms
76,144 KB
testcase_23 AC 248 ms
59,564 KB
testcase_24 AC 334 ms
65,028 KB
testcase_25 AC 375 ms
65,772 KB
testcase_26 AC 480 ms
73,616 KB
testcase_27 AC 498 ms
77,664 KB
testcase_28 AC 331 ms
63,180 KB
testcase_29 AC 417 ms
66,352 KB
testcase_30 AC 300 ms
65,224 KB
testcase_31 AC 278 ms
62,848 KB
testcase_32 AC 278 ms
63,316 KB
testcase_33 AC 351 ms
64,880 KB
testcase_34 AC 323 ms
94,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    static ArrayList<ArrayList<Integer>> graph = new ArrayList<>();
    static int[] counts;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int q = sc.nextInt();
        for (int i = 0; i < n; i++) {
            graph.add(new ArrayList<>());
        }
        for (int i = 0; i < n - 1; i++) {
            int a = sc.nextInt() - 1;
            int b = sc.nextInt() - 1;
            graph.get(a).add(b);
            graph.get(b).add(a);
        }
        counts = new int[n];
        getCount(0, 0);
        long ans = 0;
        StringBuilder sb = new StringBuilder();
        while (q-- > 0) {
            int idx = sc.nextInt() - 1;
            long x = sc.nextInt();
            ans += counts[idx] * x;
            sb.append(ans).append("\n");
        }
        System.out.print(sb);
    }
    
    static int getCount(int idx, int p) {
        counts[idx] = 1;
        for (int x : graph.get(idx)) {
            if (x == p) {
                continue;
            }
            counts[idx] += getCount(x, idx);
        }
        return counts[idx];
    }
}
    
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0