結果

問題 No.872 All Tree Path
ユーザー htensaihtensai
提出日時 2020-01-18 19:59:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,306 ms / 3,000 ms
コード長 1,498 bytes
コンパイル時間 2,280 ms
コンパイル使用メモリ 78,580 KB
実行使用メモリ 139,200 KB
最終ジャッジ日時 2024-06-28 02:13:43
合計ジャッジ時間 15,346 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,245 ms
117,084 KB
testcase_01 AC 1,306 ms
117,908 KB
testcase_02 AC 1,252 ms
115,372 KB
testcase_03 AC 1,102 ms
139,200 KB
testcase_04 AC 53 ms
36,956 KB
testcase_05 AC 1,186 ms
115,596 KB
testcase_06 AC 1,239 ms
117,136 KB
testcase_07 AC 1,213 ms
117,532 KB
testcase_08 AC 233 ms
48,164 KB
testcase_09 AC 232 ms
48,208 KB
testcase_10 AC 229 ms
48,216 KB
testcase_11 AC 234 ms
48,244 KB
testcase_12 AC 230 ms
48,776 KB
testcase_13 AC 51 ms
36,828 KB
testcase_14 AC 52 ms
36,652 KB
testcase_15 AC 52 ms
36,948 KB
testcase_16 AC 52 ms
36,824 KB
testcase_17 AC 51 ms
36,856 KB
testcase_18 AC 52 ms
36,780 KB
testcase_19 AC 52 ms
36,580 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static long[] chiledren;
    static long[] costs;
    static HashMap<Integer, Integer>[] graph;
    public static void main(String[] args) throws Exception {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        int n = Integer.parseInt(br.readLine());
        graph = new HashMap[n];
        for (int i = 0; i < n; i++) {
            graph[i] = new HashMap<Integer, Integer>();
        }
        for (int i = 0; i < n - 1; i++) {
            String[] line = br.readLine().split(" ", 3);
            int a = Integer.parseInt(line[0]) - 1;
            int b = Integer.parseInt(line[1]) - 1;
            int c = Integer.parseInt(line[2]);
            graph[a].put(b, c);
            graph[b].put(a, c);
        }
        chiledren = new long[n];
        costs = new long[n];
        getChildrenCount(0, -1);
        long total = 0;
        for (int i = 0; i < n; i++) {
            total += chiledren[i] * (n - chiledren[i]) * costs[i];
        }
        System.out.println(total * 2);
    }
    
    static long getChildrenCount(int to, int from) {
        for (Map.Entry<Integer, Integer> entry : graph[to].entrySet()) {
            int x = entry.getKey();
            if (x == from) {
                costs[to] += entry.getValue();
            } else {
                chiledren[to] += getChildrenCount(x, to);
            }
        }
        chiledren[to]++;
        return chiledren[to];
    }
}
0