結果
問題 |
No.898 tri-βutree
|
ユーザー |
![]() |
提出日時 | 2021-11-04 10:20:53 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 1,409 ms / 4,000 ms |
コード長 | 3,134 bytes |
コンパイル時間 | 2,497 ms |
コンパイル使用メモリ | 82,212 KB |
実行使用メモリ | 123,708 KB |
最終ジャッジ日時 | 2024-10-14 07:31:48 |
合計ジャッジ時間 | 28,166 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 21 |
ソースコード
import java.io.*; import java.util.*; public class Main { static ArrayList<HashMap<Integer, Integer>> graph = new ArrayList<>(); static int[][] parents; static int[] depths; static long[] weights; public static void main(String[] args) throws Exception { Scanner sc = new Scanner(); int n = sc.nextInt(); for (int i = 0; i < n; i++) { graph.add(new HashMap<>()); } for (int i = 0; i < n - 1; i++) { int a = sc.nextInt(); int b = sc.nextInt(); int c = sc.nextInt(); graph.get(a).put(b, c); graph.get(b).put(a, c); } parents = new int[17][n]; depths = new int[n]; weights = new long[n]; getWeight(0, 0, 0, 0); for (int i = 1; i < 17; i++) { for (int j = 0; j < n; j++) { parents[i][j] = parents[i - 1][parents[i - 1][j]]; } } int q = sc.nextInt(); StringBuilder sb = new StringBuilder(); for (int i = 0; i < q; i++) { sb.append(getAns(sc.nextInt(), sc.nextInt(), sc.nextInt())).append("\n"); } System.out.print(sb); } static long getEach(int a, int b) { return weights[a] + weights[b] - weights[getLCA(a, b)] * 2; } static int getLCA(int a, int b) { if (depths[a] < depths[b]) { return getLCA(b, a); } for (int i = 16; i >= 0 && depths[a] > depths[b]; i--) { if (depths[a] - depths[b] >= (1 << i)) { a = parents[i][a]; } } if (a == b) { return a; } for (int i = 16; i >= 0; i--) { if (parents[i][a] != parents[i][b]) { a = parents[i][a]; b = parents[i][b]; } } return parents[0][a]; } static long getAns(int a, int b, int c) { return (getEach(a, b) + getEach(b, c) + getEach(c, a)) / 2; } static void getWeight(int idx, int p, int d, long w) { parents[0][idx] = p; depths[idx] = d; weights[idx] = w; for (int x : graph.get(idx).keySet()) { if (x == p) { continue; } getWeight(x, idx, d + 1, w + graph.get(idx).get(x)); } } } 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 nextLine() throws Exception { return br.readLine(); } public String next() throws Exception { if (!st.hasMoreTokens()) { st = new StringTokenizer(br.readLine()); } return st.nextToken(); } }