結果

問題 No.1637 Easy Tree Query
ユーザー tentententen
提出日時 2022-08-05 16:50:17
言語 Java21
(openjdk 21)
結果
AC  
実行時間 627 ms / 2,000 ms
コード長 1,918 bytes
コンパイル時間 2,443 ms
コンパイル使用メモリ 78,912 KB
実行使用メモリ 83,112 KB
最終ジャッジ日時 2024-09-15 12:25:58
合計ジャッジ時間 20,333 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,644 KB
testcase_01 AC 51 ms
37,060 KB
testcase_02 AC 519 ms
67,284 KB
testcase_03 AC 51 ms
36,832 KB
testcase_04 AC 307 ms
53,200 KB
testcase_05 AC 425 ms
55,880 KB
testcase_06 AC 366 ms
52,384 KB
testcase_07 AC 229 ms
44,832 KB
testcase_08 AC 287 ms
51,516 KB
testcase_09 AC 488 ms
60,832 KB
testcase_10 AC 301 ms
50,500 KB
testcase_11 AC 558 ms
62,324 KB
testcase_12 AC 485 ms
58,892 KB
testcase_13 AC 234 ms
48,536 KB
testcase_14 AC 427 ms
57,656 KB
testcase_15 AC 546 ms
62,920 KB
testcase_16 AC 532 ms
63,060 KB
testcase_17 AC 271 ms
49,776 KB
testcase_18 AC 396 ms
55,932 KB
testcase_19 AC 406 ms
54,632 KB
testcase_20 AC 530 ms
60,164 KB
testcase_21 AC 417 ms
54,316 KB
testcase_22 AC 594 ms
64,644 KB
testcase_23 AC 278 ms
49,628 KB
testcase_24 AC 351 ms
53,808 KB
testcase_25 AC 406 ms
55,808 KB
testcase_26 AC 541 ms
61,916 KB
testcase_27 AC 627 ms
66,076 KB
testcase_28 AC 365 ms
52,760 KB
testcase_29 AC 464 ms
56,716 KB
testcase_30 AC 326 ms
53,544 KB
testcase_31 AC 319 ms
51,328 KB
testcase_32 AC 334 ms
51,632 KB
testcase_33 AC 395 ms
53,968 KB
testcase_34 AC 496 ms
83,112 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);
        StringBuilder sb = new StringBuilder();
        long current = 0;
        while (q-- > 0) {
            int idx = sc.nextInt() - 1;
            long value = sc.nextInt();
            current += value * counts[idx];
            sb.append(current).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("");
    
    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