結果

問題 No.2949 Product on Tree
ユーザー miiitomimiiitomi
提出日時 2024-10-25 22:07:06
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 197 ms / 2,000 ms
コード長 879 bytes
コンパイル時間 3,133 ms
コンパイル使用メモリ 253,908 KB
実行使用メモリ 27,500 KB
最終ジャッジ日時 2024-10-25 22:07:29
合計ジャッジ時間 12,941 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 155 ms
17,076 KB
testcase_04 AC 147 ms
16,736 KB
testcase_05 AC 152 ms
17,084 KB
testcase_06 AC 147 ms
17,108 KB
testcase_07 AC 153 ms
16,812 KB
testcase_08 AC 143 ms
17,408 KB
testcase_09 AC 161 ms
17,548 KB
testcase_10 AC 141 ms
17,788 KB
testcase_11 AC 150 ms
18,460 KB
testcase_12 AC 136 ms
19,876 KB
testcase_13 AC 143 ms
20,112 KB
testcase_14 AC 170 ms
21,260 KB
testcase_15 AC 196 ms
22,948 KB
testcase_16 AC 141 ms
21,576 KB
testcase_17 AC 162 ms
22,148 KB
testcase_18 AC 173 ms
22,020 KB
testcase_19 AC 187 ms
23,568 KB
testcase_20 AC 178 ms
23,100 KB
testcase_21 AC 172 ms
23,640 KB
testcase_22 AC 193 ms
24,168 KB
testcase_23 AC 158 ms
17,332 KB
testcase_24 AC 159 ms
17,364 KB
testcase_25 AC 152 ms
17,360 KB
testcase_26 AC 149 ms
17,432 KB
testcase_27 AC 147 ms
17,476 KB
testcase_28 AC 148 ms
17,512 KB
testcase_29 AC 180 ms
17,652 KB
testcase_30 AC 169 ms
18,140 KB
testcase_31 AC 153 ms
18,764 KB
testcase_32 AC 148 ms
19,260 KB
testcase_33 AC 159 ms
21,608 KB
testcase_34 AC 152 ms
24,740 KB
testcase_35 AC 179 ms
22,644 KB
testcase_36 AC 197 ms
25,832 KB
testcase_37 AC 170 ms
26,168 KB
testcase_38 AC 159 ms
24,028 KB
testcase_39 AC 149 ms
24,344 KB
testcase_40 AC 159 ms
27,176 KB
testcase_41 AC 179 ms
25,200 KB
testcase_42 AC 191 ms
27,500 KB
testcase_43 AC 56 ms
14,368 KB
testcase_44 AC 58 ms
14,324 KB
testcase_45 AC 71 ms
17,728 KB
testcase_46 AC 65 ms
16,192 KB
testcase_47 AC 47 ms
12,804 KB
testcase_48 AC 68 ms
16,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const ll INF = 2e+18;
const ll MOD = 998244353;

ll N;
vector<ll> A;
vector<vector<int>> G;
ll ans = 0;
vector<ll> dp;

void dfs(int u, int p) {
    dp[u] = A[u];
    for (int v : G[u]) {
        if (v == p) continue;
        dfs(v, u);
        ans = (ans + dp[u]*dp[v]%MOD)%MOD;
        dp[u] = (dp[u] + dp[v]*A[u]%MOD)%MOD;
    }
}

void solve() {
    cin >> N;
    A.resize(N);
    for (ll &a : A) cin >> a;
    G.resize(N);
    for (int i = 0; i < N-1; i++) {
        int u, v;
        cin >> u >> v;
        u--; v--;
        G[u].push_back(v);
        G[v].push_back(u);
    }
    dp.resize(N);
    dfs(0, -1);
    cout << ans << endl;
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    cout << fixed << setprecision(15);
    int T = 1;
    // cin >> T;
    while (T--) solve();
}
0