結果

問題 No.386 貪欲な領主
ユーザー nebukuro09nebukuro09
提出日時 2017-03-09 13:35:15
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 377 ms / 2,000 ms
コード長 1,824 bytes
コンパイル時間 750 ms
コンパイル使用メモリ 119,756 KB
実行使用メモリ 56,896 KB
最終ジャッジ日時 2024-06-12 07:15:19
合計ジャッジ時間 3,853 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 1 ms
6,940 KB
testcase_03 AC 1 ms
6,940 KB
testcase_04 AC 377 ms
56,896 KB
testcase_05 AC 287 ms
37,184 KB
testcase_06 AC 298 ms
36,856 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 39 ms
10,148 KB
testcase_09 AC 5 ms
6,944 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 3 ms
6,940 KB
testcase_13 AC 9 ms
6,940 KB
testcase_14 AC 302 ms
37,000 KB
testcase_15 AC 323 ms
49,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std.stdio, std.array, std.string, std.conv, std.algorithm;
import std.typecons, std.range, std.random, std.math, std.container;
import std.numeric, std.bigint, core.bitop, core.stdc.stdio;

immutable int MAX = 20;

int N, M;
int[] depth;
int[][] adj, doubling;
long[] U, cost;

void dfs(int n, int prev, long c, int d) {
    doubling[n][0] = prev;
    cost[n] = c + U[n];
    depth[n] = d + 1;
    foreach (m; adj[n]) if (m != prev) dfs(m, n, cost[n], d+1);
}

int lca(int a, int b) {
    if (a == b) return a;
    
    if (depth[b] < depth[a]) swap(a, b);
    int diff = depth[b] - depth[a];
    foreach (i; 0..MAX) {
        if ((1 << i) & diff)
            b = doubling[b][i];
    }

    while (a != b) {
        foreach (i; 0..MAX-1) {
            if (doubling[a][i+1] == doubling[b][i+1]) {
                a = doubling[a][i];
                b = doubling[b][i];
                break;
            }
        }
    }

    return a;
}


void main() {
    N = readln.chomp.to!int;
    adj = new int[][](N);
    U = new long[](N);
    foreach (i; 0..N-1) {
        auto s = readln.split.map!(to!int);
        adj[s[0]] ~= s[1];
        adj[s[1]] ~= s[0];
    }
    foreach (i; 0..N) {
        U[i] = readln.chomp.to!long;
    }
    M = readln.chomp.to!int;


    cost = new long[](N);
    depth = new int[](N);
    doubling = new int[][](N, MAX);
    dfs(0, -1, 0, -1);
    fill(doubling[0], -1);
    foreach (j; 1..MAX) {
        foreach (i; 1..N) {
            doubling[i][j] = doubling[max(0, doubling[i][j-1])][j-1];
        }
    }

    long ans = 0;
    foreach (i; 0..M) {
        auto s = readln.split;
        auto a = s[0].to!int;
        auto b = s[1].to!int;
        auto c = s[2].to!long;
        auto d = lca(a, b);
        ans += (cost[a] + cost[b] - 2 * cost[d] + U[d]) * c;
    }
    ans.writeln;
}
0