結果

問題 No.898 tri-βutree
ユーザー tentententen
提出日時 2021-11-04 10:20:53
言語 Java21
(openjdk 21)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 852 ms
123,708 KB
testcase_01 AC 52 ms
36,980 KB
testcase_02 AC 58 ms
36,556 KB
testcase_03 AC 56 ms
36,696 KB
testcase_04 AC 59 ms
37,044 KB
testcase_05 AC 63 ms
37,184 KB
testcase_06 AC 57 ms
37,220 KB
testcase_07 AC 1,273 ms
105,872 KB
testcase_08 AC 1,251 ms
106,440 KB
testcase_09 AC 1,284 ms
112,004 KB
testcase_10 AC 1,400 ms
110,616 KB
testcase_11 AC 1,283 ms
109,536 KB
testcase_12 AC 1,258 ms
105,808 KB
testcase_13 AC 1,287 ms
112,112 KB
testcase_14 AC 1,387 ms
108,072 KB
testcase_15 AC 1,359 ms
108,208 KB
testcase_16 AC 1,409 ms
112,688 KB
testcase_17 AC 1,375 ms
109,592 KB
testcase_18 AC 1,264 ms
106,108 KB
testcase_19 AC 1,296 ms
109,668 KB
testcase_20 AC 1,245 ms
105,344 KB
testcase_21 AC 1,286 ms
109,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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();
    }
}
0