結果

問題 No.2949 Product on Tree
ユーザー InTheBloomInTheBloom
提出日時 2024-10-25 22:28:48
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 3,004 bytes
コンパイル時間 1,843 ms
コンパイル使用メモリ 118,392 KB
実行使用メモリ 69,864 KB
最終ジャッジ日時 2024-10-25 22:29:50
合計ジャッジ時間 53,351 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,820 KB
testcase_03 AC 1,244 ms
54,648 KB
testcase_04 AC 1,291 ms
53,484 KB
testcase_05 AC 1,254 ms
54,752 KB
testcase_06 AC 1,193 ms
54,908 KB
testcase_07 AC 1,155 ms
53,620 KB
testcase_08 AC 1,154 ms
55,172 KB
testcase_09 AC 1,191 ms
55,508 KB
testcase_10 AC 1,096 ms
55,660 KB
testcase_11 AC 1,057 ms
56,352 KB
testcase_12 AC 1,089 ms
58,424 KB
testcase_13 AC 1,078 ms
58,680 KB
testcase_14 AC 1,058 ms
59,720 KB
testcase_15 AC 1,052 ms
61,928 KB
testcase_16 AC 1,067 ms
60,168 KB
testcase_17 AC 1,083 ms
61,252 KB
testcase_18 AC 1,084 ms
61,320 KB
testcase_19 AC 1,071 ms
63,540 KB
testcase_20 AC 1,062 ms
63,284 KB
testcase_21 AC 1,079 ms
64,012 KB
testcase_22 AC 1,017 ms
63,528 KB
testcase_23 AC 1,308 ms
55,640 KB
testcase_24 AC 1,311 ms
55,876 KB
testcase_25 AC 1,267 ms
55,728 KB
testcase_26 AC 1,183 ms
55,800 KB
testcase_27 AC 1,215 ms
55,844 KB
testcase_28 AC 1,201 ms
55,896 KB
testcase_29 AC 1,156 ms
56,088 KB
testcase_30 AC 1,163 ms
56,760 KB
testcase_31 AC 1,132 ms
57,864 KB
testcase_32 AC 1,180 ms
58,236 KB
testcase_33 AC 1,202 ms
61,656 KB
testcase_34 AC 1,115 ms
66,096 KB
testcase_35 AC 1,086 ms
63,028 KB
testcase_36 AC 1,113 ms
67,708 KB
testcase_37 AC 1,110 ms
67,952 KB
testcase_38 AC 1,128 ms
65,144 KB
testcase_39 AC 1,102 ms
65,392 KB
testcase_40 AC 1,104 ms
69,576 KB
testcase_41 AC 1,114 ms
66,908 KB
testcase_42 AC 1,100 ms
69,864 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<pair<int, int>, ll> dp;
    // dp[(i, j)] := 根i、親jのミニ部分木での解

    {
        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[make_pair(nex, pos)];
            }
            v %= MOD;
            v *= A[pos];
            v %= MOD;
            dp[make_pair(pos, par)] = v;
        };
        dfs(dfs, 0, -1);
    }

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

        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[make_pair(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[make_pair(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[make_pair(pos, nex)] = v;
                vis[nex] = true;
                q.push(nex);
            }

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

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

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

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