結果

問題 No.2949 Product on Tree
ユーザー t98slidert98slider
提出日時 2024-10-27 10:32:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 177 ms / 2,000 ms
コード長 834 bytes
コンパイル時間 5,291 ms
コンパイル使用メモリ 267,260 KB
実行使用メモリ 21,752 KB
最終ジャッジ日時 2024-10-27 10:32:41
合計ジャッジ時間 14,790 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 128 ms
14,752 KB
testcase_04 AC 135 ms
14,488 KB
testcase_05 AC 145 ms
14,936 KB
testcase_06 AC 132 ms
14,948 KB
testcase_07 AC 148 ms
14,536 KB
testcase_08 AC 177 ms
14,964 KB
testcase_09 AC 145 ms
15,080 KB
testcase_10 AC 138 ms
15,432 KB
testcase_11 AC 141 ms
15,612 KB
testcase_12 AC 135 ms
16,724 KB
testcase_13 AC 140 ms
16,880 KB
testcase_14 AC 147 ms
17,548 KB
testcase_15 AC 146 ms
18,572 KB
testcase_16 AC 174 ms
17,748 KB
testcase_17 AC 158 ms
18,092 KB
testcase_18 AC 148 ms
18,100 KB
testcase_19 AC 150 ms
19,052 KB
testcase_20 AC 157 ms
18,824 KB
testcase_21 AC 167 ms
19,048 KB
testcase_22 AC 156 ms
19,408 KB
testcase_23 AC 157 ms
15,112 KB
testcase_24 AC 160 ms
14,980 KB
testcase_25 AC 142 ms
15,024 KB
testcase_26 AC 148 ms
14,868 KB
testcase_27 AC 140 ms
15,084 KB
testcase_28 AC 150 ms
15,152 KB
testcase_29 AC 150 ms
15,188 KB
testcase_30 AC 143 ms
15,320 KB
testcase_31 AC 163 ms
16,012 KB
testcase_32 AC 171 ms
16,220 KB
testcase_33 AC 159 ms
17,924 KB
testcase_34 AC 161 ms
19,960 KB
testcase_35 AC 155 ms
18,464 KB
testcase_36 AC 166 ms
20,608 KB
testcase_37 AC 158 ms
20,904 KB
testcase_38 AC 164 ms
19,372 KB
testcase_39 AC 156 ms
19,680 KB
testcase_40 AC 166 ms
21,568 KB
testcase_41 AC 156 ms
20,316 KB
testcase_42 AC 171 ms
21,752 KB
testcase_43 AC 56 ms
12,508 KB
testcase_44 AC 57 ms
12,584 KB
testcase_45 AC 73 ms
15,428 KB
testcase_46 AC 66 ms
13,972 KB
testcase_47 AC 48 ms
11,280 KB
testcase_48 AC 68 ms
14,516 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] = mint::raw(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