結果

問題 No.2949 Product on Tree
ユーザー V_MelvilleV_Melville
提出日時 2024-10-26 18:10:53
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 219 ms / 2,000 ms
コード長 897 bytes
コンパイル時間 5,775 ms
コンパイル使用メモリ 312,128 KB
実行使用メモリ 22,196 KB
最終ジャッジ日時 2024-10-26 18:11:12
合計ジャッジ時間 16,824 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 193 ms
15,620 KB
testcase_04 AC 165 ms
15,212 KB
testcase_05 AC 163 ms
15,528 KB
testcase_06 AC 158 ms
15,628 KB
testcase_07 AC 154 ms
15,356 KB
testcase_08 AC 169 ms
15,824 KB
testcase_09 AC 176 ms
15,832 KB
testcase_10 AC 188 ms
15,968 KB
testcase_11 AC 167 ms
16,272 KB
testcase_12 AC 168 ms
17,316 KB
testcase_13 AC 176 ms
17,476 KB
testcase_14 AC 172 ms
18,052 KB
testcase_15 AC 169 ms
19,080 KB
testcase_16 AC 166 ms
18,240 KB
testcase_17 AC 208 ms
18,700 KB
testcase_18 AC 184 ms
18,612 KB
testcase_19 AC 184 ms
19,604 KB
testcase_20 AC 182 ms
19,292 KB
testcase_21 AC 188 ms
19,604 KB
testcase_22 AC 179 ms
19,836 KB
testcase_23 AC 183 ms
15,772 KB
testcase_24 AC 173 ms
15,776 KB
testcase_25 AC 178 ms
15,860 KB
testcase_26 AC 188 ms
15,824 KB
testcase_27 AC 168 ms
15,808 KB
testcase_28 AC 173 ms
16,012 KB
testcase_29 AC 174 ms
16,068 KB
testcase_30 AC 169 ms
16,324 KB
testcase_31 AC 175 ms
16,824 KB
testcase_32 AC 180 ms
16,996 KB
testcase_33 AC 215 ms
18,484 KB
testcase_34 AC 192 ms
20,432 KB
testcase_35 AC 184 ms
19,116 KB
testcase_36 AC 190 ms
21,020 KB
testcase_37 AC 189 ms
21,236 KB
testcase_38 AC 202 ms
20,000 KB
testcase_39 AC 187 ms
20,208 KB
testcase_40 AC 219 ms
22,020 KB
testcase_41 AC 193 ms
20,744 KB
testcase_42 AC 196 ms
22,196 KB
testcase_43 AC 59 ms
13,148 KB
testcase_44 AC 57 ms
13,348 KB
testcase_45 AC 74 ms
16,196 KB
testcase_46 AC 66 ms
14,996 KB
testcase_47 AC 49 ms
11,668 KB
testcase_48 AC 68 ms
15,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#if __has_include(<atcoder/all>)
#include <atcoder/all>
using namespace atcoder;
#endif
#define rep(i, n) for (int i = 0; i < (n); ++i)

using namespace std;
using mint = modint998244353;

int main() {
    cin.tie(nullptr) -> sync_with_stdio(false);
    
    int n;
    cin >> n;
    
    vector<int> a(n);
    rep(i, n) cin >> a[i];
    
    vector<vector<int>> to(n);
    rep(i, n-1) {
        int u, v;
        cin >> u >> v;
        --u; --v;
        to[u].push_back(v);
        to[v].push_back(u);
    }
    
    mint ans;
    vector<mint> dp(n);
    auto dfs = [&](auto& f, int v, int p=-1) -> void {
        dp[v] = a[v];
        for (int u : to[v]) {
            if (u == p) continue;
            f(f, u, v);
            ans += dp[v]*dp[u];
            dp[v] += dp[u]*a[v];
        }
    };
    dfs(dfs, 0);
    
    cout << ans.val() << '\n';
    
    return 0;
}
0