結果

問題 No.2949 Product on Tree
ユーザー t98slidert98slider
提出日時 2024-10-27 10:43:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 976 bytes
コンパイル時間 4,911 ms
コンパイル使用メモリ 267,156 KB
実行使用メモリ 17,108 KB
最終ジャッジ日時 2024-10-27 10:43:58
合計ジャッジ時間 11,934 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 82 ms
10,112 KB
testcase_04 AC 82 ms
10,116 KB
testcase_05 AC 84 ms
10,188 KB
testcase_06 AC 84 ms
10,112 KB
testcase_07 AC 82 ms
9,984 KB
testcase_08 AC 83 ms
10,048 KB
testcase_09 AC 84 ms
10,172 KB
testcase_10 AC 84 ms
10,112 KB
testcase_11 AC 84 ms
10,332 KB
testcase_12 AC 85 ms
11,572 KB
testcase_13 AC 107 ms
11,808 KB
testcase_14 AC 85 ms
12,704 KB
testcase_15 AC 85 ms
13,852 KB
testcase_16 AC 88 ms
12,976 KB
testcase_17 AC 88 ms
13,296 KB
testcase_18 AC 88 ms
13,204 KB
testcase_19 AC 89 ms
14,356 KB
testcase_20 AC 89 ms
14,012 KB
testcase_21 AC 89 ms
14,204 KB
testcase_22 AC 86 ms
14,748 KB
testcase_23 AC 83 ms
10,208 KB
testcase_24 AC 83 ms
10,288 KB
testcase_25 AC 86 ms
10,240 KB
testcase_26 AC 85 ms
10,324 KB
testcase_27 AC 85 ms
10,240 KB
testcase_28 AC 86 ms
10,112 KB
testcase_29 AC 85 ms
10,240 KB
testcase_30 AC 86 ms
10,112 KB
testcase_31 AC 85 ms
10,712 KB
testcase_32 AC 87 ms
10,832 KB
testcase_33 AC 89 ms
12,880 KB
testcase_34 AC 93 ms
15,060 KB
testcase_35 AC 97 ms
13,524 KB
testcase_36 AC 91 ms
15,952 KB
testcase_37 AC 93 ms
16,208 KB
testcase_38 AC 90 ms
14,548 KB
testcase_39 AC 91 ms
14,804 KB
testcase_40 AC 93 ms
17,104 KB
testcase_41 AC 91 ms
15,572 KB
testcase_42 AC 92 ms
17,108 KB
testcase_43 AC 47 ms
8,436 KB
testcase_44 AC 48 ms
8,540 KB
testcase_45 AC 62 ms
10,240 KB
testcase_46 AC 56 ms
9,344 KB
testcase_47 AC 41 ms
7,680 KB
testcase_48 AC 56 ms
9,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using mint = 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<pair<int,int>> edge(2 * (n - 1));
    for(int i = 0; i + 1 < n; i++){
        cin >> u >> v;
        edge[2 * i] = make_pair(--u, --v);
        edge[2 * i + 1] = make_pair(v, u);
    }
    internal::csr<int> g(n, edge);
    mint ans;
    auto dfs = [&](auto dfs, int v, int p = -1) -> mint {
        mint s0, s1;
        for(int i = g.start[v]; i < g.start[v + 1]; i++) {
            int u = g.elist[i];
            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