結果

問題 No.2949 Product on Tree
ユーザー V_MelvilleV_Melville
提出日時 2024-10-26 18:09:17
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 342 ms / 2,000 ms
コード長 844 bytes
コンパイル時間 5,913 ms
コンパイル使用メモリ 312,228 KB
実行使用メモリ 22,080 KB
最終ジャッジ日時 2024-10-26 18:09:41
合計ジャッジ時間 23,270 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,816 KB
testcase_03 AC 294 ms
15,488 KB
testcase_04 AC 291 ms
15,428 KB
testcase_05 AC 302 ms
15,568 KB
testcase_06 AC 331 ms
15,628 KB
testcase_07 AC 299 ms
15,472 KB
testcase_08 AC 302 ms
15,804 KB
testcase_09 AC 304 ms
15,964 KB
testcase_10 AC 335 ms
15,964 KB
testcase_11 AC 309 ms
16,448 KB
testcase_12 AC 304 ms
17,356 KB
testcase_13 AC 303 ms
17,600 KB
testcase_14 AC 299 ms
18,148 KB
testcase_15 AC 300 ms
19,076 KB
testcase_16 AC 324 ms
18,312 KB
testcase_17 AC 306 ms
18,632 KB
testcase_18 AC 298 ms
18,540 KB
testcase_19 AC 305 ms
19,656 KB
testcase_20 AC 311 ms
19,488 KB
testcase_21 AC 313 ms
19,692 KB
testcase_22 AC 301 ms
19,960 KB
testcase_23 AC 311 ms
15,808 KB
testcase_24 AC 303 ms
15,900 KB
testcase_25 AC 297 ms
15,888 KB
testcase_26 AC 308 ms
15,952 KB
testcase_27 AC 305 ms
15,784 KB
testcase_28 AC 303 ms
15,912 KB
testcase_29 AC 302 ms
16,088 KB
testcase_30 AC 292 ms
16,312 KB
testcase_31 AC 304 ms
16,684 KB
testcase_32 AC 310 ms
16,940 KB
testcase_33 AC 315 ms
18,552 KB
testcase_34 AC 316 ms
20,356 KB
testcase_35 AC 314 ms
19,036 KB
testcase_36 AC 313 ms
21,060 KB
testcase_37 AC 316 ms
21,368 KB
testcase_38 AC 317 ms
19,896 KB
testcase_39 AC 318 ms
20,124 KB
testcase_40 AC 317 ms
22,016 KB
testcase_41 AC 319 ms
20,780 KB
testcase_42 AC 342 ms
22,080 KB
testcase_43 AC 142 ms
13,252 KB
testcase_44 AC 145 ms
13,452 KB
testcase_45 AC 190 ms
16,168 KB
testcase_46 AC 168 ms
14,972 KB
testcase_47 AC 122 ms
11,768 KB
testcase_48 AC 172 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 {
        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