結果
問題 | No.872 All Tree Path |
ユーザー | tenten |
提出日時 | 2020-08-31 01:14:39 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 2,838 ms / 3,000 ms |
コード長 | 1,014 bytes |
コンパイル時間 | 2,664 ms |
コンパイル使用メモリ | 79,864 KB |
実行使用メモリ | 151,288 KB |
最終ジャッジ日時 | 2024-11-15 16:10:16 |
合計ジャッジ時間 | 29,334 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2,353 ms
137,004 KB |
testcase_01 | AC | 2,268 ms
135,440 KB |
testcase_02 | AC | 2,431 ms
137,064 KB |
testcase_03 | AC | 2,838 ms
151,288 KB |
testcase_04 | AC | 131 ms
53,972 KB |
testcase_05 | AC | 2,330 ms
135,980 KB |
testcase_06 | AC | 2,279 ms
134,676 KB |
testcase_07 | AC | 2,338 ms
136,992 KB |
testcase_08 | AC | 590 ms
63,632 KB |
testcase_09 | AC | 558 ms
63,416 KB |
testcase_10 | AC | 562 ms
63,960 KB |
testcase_11 | AC | 590 ms
63,832 KB |
testcase_12 | AC | 618 ms
63,468 KB |
testcase_13 | AC | 127 ms
53,760 KB |
testcase_14 | AC | 131 ms
54,148 KB |
testcase_15 | AC | 138 ms
53,828 KB |
testcase_16 | AC | 137 ms
54,048 KB |
testcase_17 | AC | 135 ms
53,960 KB |
testcase_18 | AC | 139 ms
53,956 KB |
testcase_19 | AC | 138 ms
53,896 KB |
ソースコード
import java.util.*; public class Main { static long total = 0; static int n; static ArrayList<HashMap<Integer, Integer>> graph; public static void main (String[] args) { Scanner sc = new Scanner(System.in); n = sc.nextInt(); graph = new ArrayList<>(); for (int i = 0; i < n; i++) { graph.add(new HashMap<>()); } for (int i = 0; i < n - 1; i++) { int a = sc.nextInt() - 1; int b = sc.nextInt() - 1; int c = sc.nextInt(); graph.get(a).put(b, c); graph.get(b).put(a, c); } for (int x : graph.get(0).keySet()) { calc(x, 0); } System.out.println(total); } static int calc(int idx, int parent) { int sum = 1; for (int x : graph.get(idx).keySet()) { if (x == parent) { continue; } sum += calc(x, idx); } total += graph.get(idx).get(parent) * (long)(n - sum) * sum * 2; return sum; } }