結果

問題 No.386 貪欲な領主
ユーザー tentententen
提出日時 2023-06-13 18:28:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 1,001 ms / 2,000 ms
コード長 3,529 bytes
コンパイル時間 2,913 ms
コンパイル使用メモリ 89,640 KB
実行使用メモリ 114,080 KB
最終ジャッジ日時 2023-09-04 04:38:07
合計ジャッジ時間 10,133 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
49,512 KB
testcase_01 AC 44 ms
49,600 KB
testcase_02 AC 45 ms
49,404 KB
testcase_03 AC 46 ms
49,392 KB
testcase_04 AC 976 ms
113,968 KB
testcase_05 AC 910 ms
94,492 KB
testcase_06 AC 1,001 ms
96,432 KB
testcase_07 AC 113 ms
53,620 KB
testcase_08 AC 233 ms
61,188 KB
testcase_09 AC 128 ms
53,616 KB
testcase_10 AC 45 ms
49,964 KB
testcase_11 AC 44 ms
49,388 KB
testcase_12 AC 98 ms
53,144 KB
testcase_13 AC 150 ms
55,888 KB
testcase_14 AC 919 ms
96,368 KB
testcase_15 AC 909 ms
114,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static ArrayList<ArrayList<Integer>> graph = new ArrayList<>();
    static int[] values;
    static int[][] parents;
    static int[] depths;
    static long[] totals;
    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 ArrayList<>());
        }
        for (int i = 0; i < n - 1; i++) {
            int a = sc.nextInt();
            int b = sc.nextInt();
            graph.get(a).add(b);
            graph.get(b).add(a);
        }
        values = new int[n];
        for (int i = 0; i < n; i++) {
            values[i] = sc.nextInt();
        }
        parents = new int[20][n];
        depths = new int[n];
        totals = new long[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 m = sc.nextInt();
        long ans = 0;
        while (m-- > 0) {
            int a = sc.nextInt();
            int b = sc.nextInt();
            int c = sc.nextInt();
            int lca = getLCA(a, b);
            long current = totals[a] + totals[b] - totals[lca] * 2 + values[lca];
            ans += current * c;
        }
        System.out.println(ans);
    }
    
    static void setDepth(int idx, int p, int d, long v) {
        depths[idx] = d;
        parents[0][idx] = p;
        totals[idx] = v + values[idx];
        for (int x : graph.get(idx)) {
            if (x != p) {
                setDepth(x, idx, d + 1, totals[idx]);
            }
        }
    }
    
    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 Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    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 int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0