結果

問題 No.2949 Product on Tree
ユーザー t98slidert98slider
提出日時 2024-10-27 10:33:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 165 ms / 2,000 ms
コード長 823 bytes
コンパイル時間 4,739 ms
コンパイル使用メモリ 268,172 KB
実行使用メモリ 21,780 KB
最終ジャッジ日時 2024-10-27 10:33:19
合計ジャッジ時間 14,113 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 137 ms
14,748 KB
testcase_04 AC 138 ms
14,468 KB
testcase_05 AC 143 ms
14,820 KB
testcase_06 AC 150 ms
14,848 KB
testcase_07 AC 147 ms
14,528 KB
testcase_08 AC 144 ms
14,968 KB
testcase_09 AC 140 ms
15,124 KB
testcase_10 AC 139 ms
15,228 KB
testcase_11 AC 150 ms
15,632 KB
testcase_12 AC 139 ms
16,640 KB
testcase_13 AC 152 ms
16,800 KB
testcase_14 AC 147 ms
17,508 KB
testcase_15 AC 140 ms
18,612 KB
testcase_16 AC 135 ms
17,840 KB
testcase_17 AC 149 ms
18,124 KB
testcase_18 AC 140 ms
18,072 KB
testcase_19 AC 149 ms
19,096 KB
testcase_20 AC 140 ms
18,856 KB
testcase_21 AC 143 ms
19,020 KB
testcase_22 AC 135 ms
19,336 KB
testcase_23 AC 133 ms
14,996 KB
testcase_24 AC 154 ms
15,120 KB
testcase_25 AC 148 ms
15,068 KB
testcase_26 AC 149 ms
15,044 KB
testcase_27 AC 138 ms
15,076 KB
testcase_28 AC 132 ms
15,128 KB
testcase_29 AC 145 ms
15,300 KB
testcase_30 AC 145 ms
15,512 KB
testcase_31 AC 148 ms
15,964 KB
testcase_32 AC 158 ms
16,264 KB
testcase_33 AC 139 ms
18,020 KB
testcase_34 AC 145 ms
19,872 KB
testcase_35 AC 153 ms
18,572 KB
testcase_36 AC 165 ms
20,616 KB
testcase_37 AC 160 ms
20,876 KB
testcase_38 AC 157 ms
19,380 KB
testcase_39 AC 157 ms
19,628 KB
testcase_40 AC 150 ms
21,556 KB
testcase_41 AC 153 ms
20,356 KB
testcase_42 AC 162 ms
21,780 KB
testcase_43 AC 56 ms
12,508 KB
testcase_44 AC 57 ms
12,580 KB
testcase_45 AC 72 ms
15,428 KB
testcase_46 AC 65 ms
14,104 KB
testcase_47 AC 49 ms
11,280 KB
testcase_48 AC 67 ms
14,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using mint = atcoder::modint998244353;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n, u, v;
    cin >> n;
    vector<mint> a(n);
    for(int i = 0; i < n; i++){
        cin >> v;
        a[i] = v;
    }
    vector<vector<int>> g(n);
    for(int i = 1; i < n; i++){
        cin >> u >> v;
        g[--u].emplace_back(--v);
        g[v].emplace_back(u);
    }
    mint ans;
    auto dfs = [&](auto dfs, int v, int p = -1) -> mint {
        mint s0, s1;
        for(auto &&u : g[v]){
            if(u == p) continue;
            auto rc = dfs(dfs, u, v);
            s1 += s0 * rc;
            s0 += rc;
        }
        ans += (s0 + s1) * a[v];
        return ++s0 * a[v];
    };
    dfs(dfs, 0);
    cout << ans.val() << '\n';
}
0