結果

問題 No.2949 Product on Tree
ユーザー V_MelvilleV_Melville
提出日時 2024-10-25 21:42:24
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 349 ms / 2,000 ms
コード長 892 bytes
コンパイル時間 5,266 ms
コンパイル使用メモリ 311,636 KB
実行使用メモリ 28,024 KB
最終ジャッジ日時 2024-10-25 21:42:49
合計ジャッジ時間 22,210 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 302 ms
15,696 KB
testcase_04 AC 299 ms
15,368 KB
testcase_05 AC 306 ms
15,656 KB
testcase_06 AC 331 ms
15,688 KB
testcase_07 AC 300 ms
15,420 KB
testcase_08 AC 306 ms
16,008 KB
testcase_09 AC 310 ms
16,196 KB
testcase_10 AC 332 ms
16,452 KB
testcase_11 AC 311 ms
17,152 KB
testcase_12 AC 308 ms
19,184 KB
testcase_13 AC 309 ms
19,404 KB
testcase_14 AC 304 ms
20,824 KB
testcase_15 AC 328 ms
22,776 KB
testcase_16 AC 312 ms
21,136 KB
testcase_17 AC 309 ms
21,812 KB
testcase_18 AC 311 ms
21,628 KB
testcase_19 AC 330 ms
23,496 KB
testcase_20 AC 316 ms
23,112 KB
testcase_21 AC 323 ms
23,476 KB
testcase_22 AC 317 ms
24,292 KB
testcase_23 AC 340 ms
15,772 KB
testcase_24 AC 314 ms
15,896 KB
testcase_25 AC 312 ms
15,968 KB
testcase_26 AC 310 ms
15,928 KB
testcase_27 AC 334 ms
16,044 KB
testcase_28 AC 302 ms
16,092 KB
testcase_29 AC 307 ms
16,304 KB
testcase_30 AC 317 ms
16,616 KB
testcase_31 AC 321 ms
17,760 KB
testcase_32 AC 319 ms
17,896 KB
testcase_33 AC 339 ms
21,024 KB
testcase_34 AC 325 ms
24,736 KB
testcase_35 AC 319 ms
22,200 KB
testcase_36 AC 330 ms
26,100 KB
testcase_37 AC 348 ms
26,244 KB
testcase_38 AC 320 ms
23,740 KB
testcase_39 AC 321 ms
24,292 KB
testcase_40 AC 328 ms
27,824 KB
testcase_41 AC 349 ms
25,412 KB
testcase_42 AC 325 ms
28,024 KB
testcase_43 AC 146 ms
13,252 KB
testcase_44 AC 147 ms
13,452 KB
testcase_45 AC 186 ms
16,172 KB
testcase_46 AC 172 ms
14,980 KB
testcase_47 AC 125 ms
11,768 KB
testcase_48 AC 175 ms
15,256 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() {
    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 {
        ans += a[v];
        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);
    rep(i, n) ans -= a[i];
    
    cout << ans.val() << '\n';
    
    return 0;
}
0