結果
問題 | No.872 All Tree Path |
ユーザー | k_6101 |
提出日時 | 2019-12-07 15:06:11 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,470 bytes |
コンパイル時間 | 2,496 ms |
コンパイル使用メモリ | 79,972 KB |
実行使用メモリ | 151,052 KB |
最終ジャッジ日時 | 2024-06-07 14:28:42 |
合計ジャッジ時間 | 20,286 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 111 ms
40,480 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 436 ms
52,172 KB |
testcase_09 | AC | 445 ms
51,964 KB |
testcase_10 | AC | 443 ms
51,632 KB |
testcase_11 | AC | 439 ms
51,840 KB |
testcase_12 | AC | 446 ms
51,744 KB |
testcase_13 | AC | 110 ms
40,540 KB |
testcase_14 | AC | 113 ms
40,968 KB |
testcase_15 | AC | 116 ms
40,576 KB |
testcase_16 | AC | 122 ms
41,616 KB |
testcase_17 | AC | 118 ms
41,312 KB |
testcase_18 | AC | 116 ms
40,680 KB |
testcase_19 | AC | 121 ms
41,088 KB |
ソースコード
import java.io.InputStream; import java.io.PrintWriter; import java.lang.reflect.Array; import java.util.ArrayList; import java.util.Arrays; import java.util.HashMap; import java.util.HashSet; import java.util.List; import java.util.Map; import java.util.PriorityQueue; import java.util.Scanner; import java.util.Set; import java.util.Stack; import java.util.TreeSet; import static java.util.Comparator.*; public class Main { public static void main(String[] args) { PrintWriter out = new PrintWriter(System.out); Solver solver = new Solver(System.in, out); solver.solve(); out.close(); } } class Solver { Scanner sc; PrintWriter out; public Solver(InputStream in, PrintWriter out) { sc = new Scanner(in); this.out = out; } // ================================================================== GraphWith G = new GraphWith(); long total = 0; int N; int dfs(int now, int pre) { int ans = 1, cnt; for(PP p : G.get(now)) { if(p.key == pre) continue; cnt= dfs(p.key, now); total += (long)p.val * (cnt * (N - cnt)) * 2; // out.println("total = " + total + " <-- val[" + p.val + "] * (" // + cnt + " * (" + N + " - " + cnt + ")) * 2 を足した結果"); ans += cnt; } // out.println("now = " + now + " pre = " + pre + " --> ans = " + ans); return ans; } public void solve() { N = Integer.parseInt(sc.next()); int u, v, w; for (int i = 0; i < N - 1; i++) { u = Integer.parseInt(sc.next()) - 1; v = Integer.parseInt(sc.next()) - 1; w = Integer.parseInt(sc.next()); G.add(u, new PP(v,w)); G.add(v, new PP(u,w)); } dfs(0, -1); out.println(total); } // 重さを持ったグラフのリンクリスト class GraphWith { // キーに紐づくリストに、頂点番号と重さのペアを持つ private Map<Integer, List<PP>> data = new HashMap<Integer, List<PP>>(); // 指定された頂点に紐づく、頂点と重さのペアを追加する void add(int key, PP p) { List<PP> list = data.get(key); if(list == null) { list = new ArrayList<PP>(); data.put(key, list); } list.add(p); } // 頂点に紐づく、頂点と重さのペアのリストを返す List<PP> get(int key) { return data.get(key); } // 頂点 key が登録されているか? boolean contains(int key) { return data.containsKey(key); } // 頂点のセットを返す Set<Integer> keySet() { return data.keySet(); } // 頂点 key_1 と 頂点 key_2 がつながっていれば true を返す boolean isConnect(int key_1, int key_2) { List<PP> list = data.get(key_1); if(list == null) return false; boolean ans = false; for(PP p : list) { if(p.getKey() == key_2) { ans = true; break; } } return ans; } } class PP{ public int key, val; public PP(int key, int val) { this.key = key; this.val = val; } public int getKey() { return key; } public void setKey(int key) { this.key = key; } public int getVal() { return val; } public void setVal(int val) { this.val = val; } } }