結果

問題 No.2949 Product on Tree
ユーザー InTheBloomInTheBloom
提出日時 2024-11-04 18:19:53
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 414 ms / 2,000 ms
コード長 1,094 bytes
コンパイル時間 2,550 ms
コンパイル使用メモリ 174,312 KB
実行使用メモリ 39,588 KB
最終ジャッジ日時 2024-11-04 18:20:17
合計ジャッジ時間 21,843 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 3 ms
6,820 KB
testcase_02 AC 3 ms
6,820 KB
testcase_03 AC 414 ms
25,296 KB
testcase_04 AC 321 ms
25,228 KB
testcase_05 AC 322 ms
25,260 KB
testcase_06 AC 332 ms
25,336 KB
testcase_07 AC 359 ms
25,280 KB
testcase_08 AC 338 ms
25,476 KB
testcase_09 AC 332 ms
25,836 KB
testcase_10 AC 344 ms
26,156 KB
testcase_11 AC 348 ms
27,012 KB
testcase_12 AC 314 ms
29,496 KB
testcase_13 AC 316 ms
29,956 KB
testcase_14 AC 343 ms
31,616 KB
testcase_15 AC 329 ms
34,132 KB
testcase_16 AC 341 ms
32,144 KB
testcase_17 AC 329 ms
32,844 KB
testcase_18 AC 322 ms
32,544 KB
testcase_19 AC 352 ms
34,644 KB
testcase_20 AC 348 ms
34,148 KB
testcase_21 AC 349 ms
34,308 KB
testcase_22 AC 334 ms
35,744 KB
testcase_23 AC 345 ms
25,356 KB
testcase_24 AC 340 ms
25,148 KB
testcase_25 AC 350 ms
25,320 KB
testcase_26 AC 338 ms
25,412 KB
testcase_27 AC 344 ms
25,436 KB
testcase_28 AC 329 ms
25,508 KB
testcase_29 AC 318 ms
25,844 KB
testcase_30 AC 339 ms
26,372 KB
testcase_31 AC 333 ms
27,424 KB
testcase_32 AC 322 ms
27,844 KB
testcase_33 AC 371 ms
31,432 KB
testcase_34 AC 345 ms
35,764 KB
testcase_35 AC 354 ms
32,684 KB
testcase_36 AC 360 ms
37,272 KB
testcase_37 AC 370 ms
37,700 KB
testcase_38 AC 338 ms
34,660 KB
testcase_39 AC 343 ms
35,216 KB
testcase_40 AC 396 ms
39,176 KB
testcase_41 AC 339 ms
36,584 KB
testcase_42 AC 343 ms
39,588 KB
testcase_43 AC 165 ms
23,384 KB
testcase_44 AC 193 ms
23,720 KB
testcase_45 AC 241 ms
25,408 KB
testcase_46 AC 198 ms
25,376 KB
testcase_47 AC 140 ms
17,296 KB
testcase_48 AC 203 ms
25,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

void main () {
    int N = readln.chomp.to!int;
    auto A = readln.split.to!(int[]);

    const long MOD = 998244353;

    auto graph = new int[][](N, 0);
    foreach (i; 0..N - 1) {
        int U, V; readln.read(U, V);
        U--, V--;
        graph[U] ~= V;
        graph[V] ~= U;
    }

    long ans = 0;
    auto dp = new long[](N);
    // dp[i] := iを根とする部分木に属するすべての頂点jに対して、f(i, j)の総和

    void dfs (int pos, int par) {
        long s = 0;
        foreach (to; graph[pos]) {
            if (to == par) continue;
            dfs(to, pos);

            ans += s * A[pos] % MOD * dp[to] % MOD;
            s += dp[to];
            s %= MOD;
        }
        dp[pos] = (s + 1) * A[pos] % MOD;
        ans += dp[pos] - A[pos];
        ans %= MOD;
        if (ans < 0) ans += MOD;
    }

    dfs(0, -1);

    writeln(ans);
}

void read (T...) (string S, ref T args) {
    import std.conv : to;
    import std.array : split;
    auto buf = S.split;
    foreach (i, ref arg; args) {
        arg = buf[i].to!(typeof(arg));
    }
}
0