結果

問題 No.901 K-ary εxtrεεmε
ユーザー tentententen
提出日時 2024-03-12 13:01:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,218 ms / 3,000 ms
コード長 3,502 bytes
コンパイル時間 2,630 ms
コンパイル使用メモリ 92,028 KB
実行使用メモリ 129,736 KB
最終ジャッジ日時 2024-03-12 13:02:20
合計ジャッジ時間 34,458 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 827 ms
122,212 KB
testcase_01 AC 77 ms
55,004 KB
testcase_02 AC 129 ms
57,588 KB
testcase_03 AC 137 ms
57,700 KB
testcase_04 AC 147 ms
57,492 KB
testcase_05 AC 138 ms
57,988 KB
testcase_06 AC 146 ms
57,712 KB
testcase_07 AC 1,081 ms
116,568 KB
testcase_08 AC 1,113 ms
116,508 KB
testcase_09 AC 1,058 ms
116,536 KB
testcase_10 AC 1,075 ms
120,564 KB
testcase_11 AC 1,077 ms
116,932 KB
testcase_12 AC 1,093 ms
110,200 KB
testcase_13 AC 1,074 ms
110,592 KB
testcase_14 AC 1,077 ms
110,728 KB
testcase_15 AC 1,098 ms
108,500 KB
testcase_16 AC 1,086 ms
110,680 KB
testcase_17 AC 1,202 ms
125,876 KB
testcase_18 AC 1,211 ms
129,624 KB
testcase_19 AC 1,169 ms
125,224 KB
testcase_20 AC 1,174 ms
125,296 KB
testcase_21 AC 1,196 ms
125,272 KB
testcase_22 AC 1,057 ms
110,164 KB
testcase_23 AC 1,072 ms
110,080 KB
testcase_24 AC 1,080 ms
110,092 KB
testcase_25 AC 1,085 ms
110,620 KB
testcase_26 AC 1,065 ms
110,112 KB
testcase_27 AC 1,209 ms
129,632 KB
testcase_28 AC 1,217 ms
129,692 KB
testcase_29 AC 1,218 ms
129,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
import java.util.stream.*;

public class Main {
    static List<Map<Integer, Integer>> graph = new ArrayList<>();
    static int[][] parents;
    static int[] depths;
    static long[] weights;
    static int[] dfs;
    static int current = 0;
    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[20][n];
        depths = new int[n];
        weights = new long[n];
        dfs = new int[n];
        setDepth(0, 0, 0, 0);
        for (int i = 1; i < 20; i++) {
            for (int j = 0; j < n; j++) {
                parents[i][j] = parents[i - 1][parents[i - 1][j]];
            }
        }
        int q = sc.nextInt();
        String result = IntStream.range(0, q).mapToObj(p -> {
            int k = sc.nextInt();
            List<Integer> list = IntStream.range(0, k)
                .map(i -> sc.nextInt()).boxed().sorted((a, b) -> dfs[a] - dfs[b]).toList();
            long ans = 0;
            for (int i = 0; i < k; i++) {
                ans += getLength(list.get(i), list.get((i + 1) % k));
            }
            return String.valueOf(ans / 2);
        }).collect(Collectors.joining("\n"));
        System.out.println(result);
    }
    
    static void setDepth(int idx, int p, int d, long v) {
        parents[0][idx] = p;
        depths[idx] = d;
        weights[idx] = v;
        dfs[idx] = current++;
        for (int x : graph.get(idx).keySet()) {
            if (x != p) {
                setDepth(x, idx, d + 1, v + graph.get(idx).get(x));
            }
        }
    }
    
    static long getLength(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 = 19; i >= 0; i--) {
            if (depths[a] - depths[b] >= (1 << i)) {
                a = parents[i][a];
            }
        }
        if (a == b) {
            return a;
        }
        for (int i = 19; i >= 0; i--) {
            if (parents[i][a] != parents[i][b]) {
                a = parents[i][a];
                b = parents[i][b];
            }
        }
        return parents[0][a];
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}
0