結果
問題 | No.898 tri-βutree |
ユーザー | tenten |
提出日時 | 2022-08-12 15:13:12 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 1,390 ms / 4,000 ms |
コード長 | 3,101 bytes |
コンパイル時間 | 2,621 ms |
コンパイル使用メモリ | 84,900 KB |
実行使用メモリ | 125,080 KB |
最終ジャッジ日時 | 2024-09-22 17:44:33 |
合計ジャッジ時間 | 29,079 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 823 ms
125,080 KB |
testcase_01 | AC | 54 ms
50,400 KB |
testcase_02 | AC | 63 ms
50,564 KB |
testcase_03 | AC | 63 ms
50,604 KB |
testcase_04 | AC | 61 ms
50,404 KB |
testcase_05 | AC | 63 ms
50,548 KB |
testcase_06 | AC | 64 ms
50,528 KB |
testcase_07 | AC | 1,290 ms
116,132 KB |
testcase_08 | AC | 1,362 ms
121,180 KB |
testcase_09 | AC | 1,284 ms
116,012 KB |
testcase_10 | AC | 1,379 ms
121,248 KB |
testcase_11 | AC | 1,359 ms
121,200 KB |
testcase_12 | AC | 1,367 ms
121,160 KB |
testcase_13 | AC | 1,330 ms
121,096 KB |
testcase_14 | AC | 1,358 ms
121,204 KB |
testcase_15 | AC | 1,339 ms
121,532 KB |
testcase_16 | AC | 1,362 ms
121,052 KB |
testcase_17 | AC | 1,381 ms
121,160 KB |
testcase_18 | AC | 1,362 ms
115,328 KB |
testcase_19 | AC | 1,352 ms
121,192 KB |
testcase_20 | AC | 1,390 ms
121,252 KB |
testcase_21 | AC | 1,371 ms
121,320 KB |
ソースコード
import java.io.*; import java.util.*; public class Main { static ArrayList<HashMap<Integer, Integer>> graph = new ArrayList<>(); static long[] weights; static int[][] parents; static int[] depths; 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); } weights = new long[n]; depths = new int[n]; parents = new int[17][n]; setDepth(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]]; } } StringBuilder sb = new StringBuilder(); int q = sc.nextInt(); while (q-- > 0) { int[] targets = new int[]{sc.nextInt(), sc.nextInt(), sc.nextInt()}; long sum = 0; for (int i = 0; i < 3; i++) { sum += getWeight(targets[i], targets[(i + 1) % 3]); } sb.append(sum / 2).append("\n"); } System.out.print(sb); } static int getLCA(int a, int b) { if (depths[a] < depths[b]) { return getLCA(b, a); } for (int i = 16; i >= 0; 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 getWeight(int a, int b) { int lca = getLCA(a, b); return weights[a] + weights[b] - weights[lca] * 2; } static void setDepth(int idx, int p, long w, int d) { depths[idx] = d; weights[idx] = w; parents[0][idx] = p; for (int x : graph.get(idx).keySet()) { if (x == p) { continue; } setDepth(x, idx, w + graph.get(idx).get(x), d + 1); } } } 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(); } }