結果

問題 No.2949 Product on Tree
ユーザー maeshunmaeshun
提出日時 2024-10-26 11:02:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 378 ms / 2,000 ms
コード長 1,155 bytes
コンパイル時間 5,552 ms
コンパイル使用メモリ 264,680 KB
実行使用メモリ 30,060 KB
最終ジャッジ日時 2024-10-26 11:03:22
合計ジャッジ時間 23,927 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 308 ms
15,652 KB
testcase_04 AC 276 ms
15,256 KB
testcase_05 AC 282 ms
15,584 KB
testcase_06 AC 288 ms
15,600 KB
testcase_07 AC 315 ms
15,340 KB
testcase_08 AC 294 ms
15,964 KB
testcase_09 AC 296 ms
16,148 KB
testcase_10 AC 288 ms
16,560 KB
testcase_11 AC 314 ms
17,268 KB
testcase_12 AC 295 ms
19,548 KB
testcase_13 AC 302 ms
20,112 KB
testcase_14 AC 301 ms
21,652 KB
testcase_15 AC 325 ms
23,908 KB
testcase_16 AC 327 ms
22,232 KB
testcase_17 AC 294 ms
22,788 KB
testcase_18 AC 299 ms
22,572 KB
testcase_19 AC 327 ms
24,772 KB
testcase_20 AC 304 ms
24,236 KB
testcase_21 AC 303 ms
24,488 KB
testcase_22 AC 303 ms
25,744 KB
testcase_23 AC 314 ms
15,804 KB
testcase_24 AC 297 ms
15,744 KB
testcase_25 AC 310 ms
15,808 KB
testcase_26 AC 288 ms
15,948 KB
testcase_27 AC 287 ms
15,856 KB
testcase_28 AC 300 ms
16,032 KB
testcase_29 AC 290 ms
16,288 KB
testcase_30 AC 304 ms
16,768 KB
testcase_31 AC 298 ms
17,900 KB
testcase_32 AC 331 ms
18,264 KB
testcase_33 AC 306 ms
21,824 KB
testcase_34 AC 316 ms
26,088 KB
testcase_35 AC 350 ms
23,308 KB
testcase_36 AC 378 ms
27,668 KB
testcase_37 AC 350 ms
28,172 KB
testcase_38 AC 316 ms
25,152 KB
testcase_39 AC 329 ms
25,600 KB
testcase_40 AC 325 ms
29,568 KB
testcase_41 AC 313 ms
27,052 KB
testcase_42 AC 356 ms
30,060 KB
testcase_43 AC 146 ms
13,124 KB
testcase_44 AC 148 ms
13,348 KB
testcase_45 AC 189 ms
16,172 KB
testcase_46 AC 170 ms
14,972 KB
testcase_47 AC 124 ms
11,896 KB
testcase_48 AC 175 ms
15,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
#define rep(i, n) for(int i=0;i<(n);++i)
#define rep1(i, n) for(int i=1;i<=(n);i++)
#define ll long long
using mint = modint998244353;
using P = pair<ll,ll>;
using lb = long double;
using T = tuple<ll, ll, ll>;
#ifdef LOCAL
#  include <debug_print.hpp>
#  define dbg(...) debug_print::multi_print(#__VA_ARGS__, __VA_ARGS__)
#else
#  define dbg(...) (static_cast<void>(0))
#endif

int main()
{
    int n;
    cin >> n;
    vector<int> a(n);
    rep(i,n) cin >> a[i];
    vector<vector<int>> g(n);
    rep(i,n-1) {
        int u, v;
        cin >> u >> v;
        --u;--v;
        g[u].push_back(v);
        g[v].push_back(u);
    }
    vector<mint> dp(n);
    mint ans = 0;
    auto dfs = [&](auto dfs, int u, int p = -1) -> void {
        mint sum = 0;
        for(int v : g[u]) {
            if(v==p) continue;
            dfs(dfs, v, u);
            ans += sum*a[u]*dp[v];
            sum += dp[v];
            dp[u] += dp[v] * a[u];
        }
        ans += dp[u];
        dp[u] += a[u];
    };
    dfs(dfs, 0);
    cout << ans.val() << endl;
    return 0;
}
0