結果

問題 No.2949 Product on Tree
ユーザー ooaiuooaiu
提出日時 2024-12-06 16:08:19
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 225 ms / 2,000 ms
コード長 1,672 bytes
コンパイル時間 3,583 ms
コンパイル使用メモリ 254,032 KB
実行使用メモリ 30,720 KB
最終ジャッジ日時 2024-12-06 16:08:41
合計ジャッジ時間 20,602 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 184 ms
16,256 KB
testcase_04 AC 182 ms
15,872 KB
testcase_05 AC 193 ms
16,256 KB
testcase_06 AC 187 ms
16,384 KB
testcase_07 AC 181 ms
16,000 KB
testcase_08 AC 182 ms
16,512 KB
testcase_09 AC 183 ms
16,896 KB
testcase_10 AC 188 ms
17,280 KB
testcase_11 AC 189 ms
18,048 KB
testcase_12 AC 203 ms
20,224 KB
testcase_13 AC 194 ms
20,608 KB
testcase_14 AC 189 ms
22,272 KB
testcase_15 AC 194 ms
24,704 KB
testcase_16 AC 197 ms
22,912 KB
testcase_17 AC 194 ms
23,552 KB
testcase_18 AC 225 ms
23,296 KB
testcase_19 AC 200 ms
25,600 KB
testcase_20 AC 205 ms
25,088 KB
testcase_21 AC 203 ms
25,344 KB
testcase_22 AC 198 ms
26,368 KB
testcase_23 AC 190 ms
16,640 KB
testcase_24 AC 187 ms
16,512 KB
testcase_25 AC 189 ms
16,512 KB
testcase_26 AC 186 ms
16,512 KB
testcase_27 AC 195 ms
16,768 KB
testcase_28 AC 188 ms
16,640 KB
testcase_29 AC 188 ms
17,024 KB
testcase_30 AC 199 ms
17,536 KB
testcase_31 AC 195 ms
18,560 KB
testcase_32 AC 194 ms
18,944 KB
testcase_33 AC 200 ms
22,528 KB
testcase_34 AC 211 ms
26,880 KB
testcase_35 AC 218 ms
23,936 KB
testcase_36 AC 213 ms
28,416 KB
testcase_37 AC 210 ms
28,672 KB
testcase_38 AC 205 ms
25,856 KB
testcase_39 AC 209 ms
26,368 KB
testcase_40 AC 208 ms
30,336 KB
testcase_41 AC 214 ms
27,648 KB
testcase_42 AC 211 ms
30,720 KB
testcase_43 AC 61 ms
13,660 KB
testcase_44 AC 62 ms
13,860 KB
testcase_45 AC 80 ms
16,968 KB
testcase_46 AC 71 ms
15,488 KB
testcase_47 AC 53 ms
12,176 KB
testcase_48 AC 73 ms
15,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#ifdef LOCAL
#include "algo/debug.h"
#else
#define debug(...) (void(0))
#endif

#include <atcoder/modint>
using mint = atcoder::modint998244353;

namespace std {

template <class Fun>
class y_combinator_result {
    Fun fun_;

   public:
    template <class T>
    explicit y_combinator_result(T &&fun) : fun_(std::forward<T>(fun)) {}

    template <class... Args>
    decltype(auto) operator()(Args &&...args) {
        return fun_(std::ref(*this), std::forward<Args>(args)...);
    }
};

template <class Fun>
decltype(auto) y_combinator(Fun &&fun) {
    return y_combinator_result<std::decay_t<Fun>>(std::forward<Fun>(fun));
}

}  // namespace std
int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    int N; cin >> N;
    vector<int> A(N);
    for(int i = 0; i < N; i++) cin >> A[i];
    vector<vector<int>> G(N);
    for(int i = 0; i < N - 1; i++) {
        int a, b; cin >> a >> b;
        a--, b--;
        G[a].push_back(b);
        G[b].push_back(a);
    }
    vector<mint> from(N), via(N);
    y_combinator([&](auto self, int v, int p = -1) -> void {
        from[v] = A[v];
        mint sum = 0;
        for(auto&&nv: G[v]) if(nv != p) {
            self(nv, v);
            from[v] += A[v] * from[nv];
            sum += from[nv];
        }
        for(auto&&nv: G[v]) if(nv != p) {
            sum -= from[nv];
            via[v] += sum * from[nv];
        }
        via[v] *= A[v];
    })(0);
    debug(from);
    debug(via);
    mint ans = 0;
    for(int i = 0; i < N; i++) {
        ans += from[i];
        ans += via[i];
        ans -= A[i];
    }
    cout << ans.val() << endl;
}
0