結果

問題 No.2949 Product on Tree
ユーザー InTheBloomInTheBloom
提出日時 2024-10-25 22:40:33
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 3,033 bytes
コンパイル時間 1,697 ms
コンパイル使用メモリ 116,564 KB
実行使用メモリ 69,872 KB
最終ジャッジ日時 2024-10-25 22:41:28
合計ジャッジ時間 51,335 ms
ジャッジサーバーID
(参考情報)
judge5 / 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 1,171 ms
54,576 KB
testcase_04 AC 1,156 ms
53,480 KB
testcase_05 AC 1,134 ms
54,852 KB
testcase_06 AC 1,114 ms
54,792 KB
testcase_07 AC 1,062 ms
53,712 KB
testcase_08 AC 1,079 ms
55,276 KB
testcase_09 AC 1,108 ms
55,272 KB
testcase_10 AC 1,037 ms
55,584 KB
testcase_11 AC 1,079 ms
56,628 KB
testcase_12 AC 1,047 ms
58,372 KB
testcase_13 AC 1,045 ms
58,620 KB
testcase_14 AC 1,015 ms
59,684 KB
testcase_15 AC 1,012 ms
61,808 KB
testcase_16 AC 995 ms
60,212 KB
testcase_17 AC 1,042 ms
61,332 KB
testcase_18 AC 1,036 ms
61,324 KB
testcase_19 AC 1,066 ms
63,512 KB
testcase_20 AC 1,052 ms
63,252 KB
testcase_21 AC 1,065 ms
63,924 KB
testcase_22 AC 984 ms
63,540 KB
testcase_23 AC 1,294 ms
55,760 KB
testcase_24 AC 1,292 ms
55,812 KB
testcase_25 AC 1,177 ms
55,700 KB
testcase_26 AC 1,140 ms
55,668 KB
testcase_27 AC 1,112 ms
55,924 KB
testcase_28 AC 1,171 ms
55,916 KB
testcase_29 AC 1,109 ms
56,080 KB
testcase_30 AC 1,139 ms
56,780 KB
testcase_31 AC 1,092 ms
57,976 KB
testcase_32 AC 1,161 ms
58,204 KB
testcase_33 AC 1,117 ms
61,656 KB
testcase_34 AC 1,085 ms
66,016 KB
testcase_35 AC 1,077 ms
63,132 KB
testcase_36 AC 1,076 ms
67,708 KB
testcase_37 AC 1,079 ms
67,996 KB
testcase_38 AC 1,066 ms
64,984 KB
testcase_39 AC 1,054 ms
65,452 KB
testcase_40 AC 1,101 ms
69,524 KB
testcase_41 AC 1,081 ms
66,904 KB
testcase_42 AC 1,067 ms
69,872 KB
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <map>
#include <utility>
#include <queue>

using namespace std;
using ll = long long;

ll mod_pow (ll x, ll p, const ll MOD) {
    x %= MOD;
    ll res = 1;
    while (0 < p) {
        if (p % 2 == 1) {
            res *= x;
            res %= MOD;
        }
        p >>= 1;
        x *= x;
        x %= MOD;
    }

    return res;
}

int main () {
    int N; cin >> N;
    vector<int> A(N);
    for (int i = 0; i < N; i++) cin >> A[i];
    vector<vector<int>> graph(N);
    for (int i = 0; i < N - 1; i++) {
        int U, V; cin >> U >> V;
        U--, V--;
        graph[U].push_back(V);
        graph[V].push_back(U);
    }

    const ll MOD = 998244353;
    // (i, j)全列挙は回らないので、主客転倒的数え上げが必要そう。
    // 根rを決めて、rからの全パスの積の和と考えてみる。
    // (子の総和 + 1) * (重み)を渡す木dpで出来そう。
    // -> 全方位木dpに乗りますよねこれ

    map<ll, ll> dp;
    // dp[(i, j)] := 根i、親jのミニ部分木での解

    auto f = [&] (int pos, int par) {
        return 1L * pos * (N + 1) + (par + 1);
    };

    {
        auto dfs = [&] (auto& dfs, int pos, int par) -> void {
            ll v = 1;
            for (auto nex : graph[pos]) {
                if (nex == par) continue;
                dfs(dfs, nex, pos);
                v += dp[f(nex, pos)];
            }
            v %= MOD;
            v *= A[pos];
            v %= MOD;
            dp[f(pos, par)] = v;
        };
        dfs(dfs, 0, -1);
    }

    { // BFSで伝搬
        queue<int> q;
        vector<bool> vis(N);
        vector<ll> L(N + 1), R(N + 1);

        q.push(0);
        vis[0] = true;
        while (!q.empty()) {
            auto pos = q.front(); q.pop();
            const int ch_size = static_cast<int> (graph[pos].size());

            // 累積和の計算
            L[0] = 0;
            for (int i = 0; i < ch_size; i++) {
                int nex = graph[pos][i];
                L[i + 1] = L[i] + dp[f(nex, pos)] % MOD;
            }
            R[0] = 0;
            for (int i = 0; i < ch_size; i++) {
                int nex = graph[pos][ch_size - i - 1];
                R[i + 1] = R[i] + dp[f(nex, pos)] % MOD;
            }

            // 逆向き伝搬
            for (int i = 0; i < ch_size; i++) {
                int nex = graph[pos][i];
                if (vis[nex]) continue;

                ll v = (L[i] + R[ch_size - i - 1] + 1) % MOD;
                v *= A[pos];
                v %= MOD;

                dp[f(pos, nex)] = v;
                vis[nex] = true;
                q.push(nex);
            }

            // 自分を根とする値の計算
            dp[f(pos, -1)] = (L[ch_size] + 1) * A[pos] % MOD;
        }
    }

    ll ans = 0;
    for (int i = 0; i < N; i++) {
        ans += dp[f(i, -1)] - A[i];
    }
    ans %= MOD;

    ans *= mod_pow(2, MOD - 2, MOD);
    ans %= MOD;
    if (ans < 0) ans += MOD;

    cout << ans << "\n";
}
0