結果

問題 No.2949 Product on Tree
ユーザー hitonanodehitonanode
提出日時 2024-10-26 22:05:03
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 191 ms / 2,000 ms
コード長 841 bytes
コンパイル時間 1,482 ms
コンパイル使用メモリ 94,548 KB
実行使用メモリ 27,252 KB
最終ジャッジ日時 2024-10-26 22:05:16
合計ジャッジ時間 12,575 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 1 ms
6,820 KB
testcase_03 AC 148 ms
14,748 KB
testcase_04 AC 149 ms
14,516 KB
testcase_05 AC 154 ms
14,852 KB
testcase_06 AC 156 ms
14,772 KB
testcase_07 AC 160 ms
14,624 KB
testcase_08 AC 158 ms
14,912 KB
testcase_09 AC 181 ms
15,320 KB
testcase_10 AC 150 ms
15,580 KB
testcase_11 AC 143 ms
16,232 KB
testcase_12 AC 153 ms
18,212 KB
testcase_13 AC 149 ms
18,444 KB
testcase_14 AC 157 ms
19,840 KB
testcase_15 AC 154 ms
21,888 KB
testcase_16 AC 171 ms
20,360 KB
testcase_17 AC 163 ms
21,004 KB
testcase_18 AC 165 ms
20,864 KB
testcase_19 AC 165 ms
22,660 KB
testcase_20 AC 169 ms
22,172 KB
testcase_21 AC 182 ms
22,512 KB
testcase_22 AC 161 ms
23,364 KB
testcase_23 AC 166 ms
14,988 KB
testcase_24 AC 154 ms
15,084 KB
testcase_25 AC 151 ms
15,072 KB
testcase_26 AC 156 ms
15,108 KB
testcase_27 AC 159 ms
15,140 KB
testcase_28 AC 162 ms
15,200 KB
testcase_29 AC 153 ms
15,388 KB
testcase_30 AC 161 ms
15,764 KB
testcase_31 AC 161 ms
16,820 KB
testcase_32 AC 154 ms
17,168 KB
testcase_33 AC 157 ms
20,192 KB
testcase_34 AC 167 ms
23,828 KB
testcase_35 AC 171 ms
21,436 KB
testcase_36 AC 191 ms
25,240 KB
testcase_37 AC 170 ms
25,564 KB
testcase_38 AC 168 ms
22,868 KB
testcase_39 AC 180 ms
23,220 KB
testcase_40 AC 172 ms
26,912 KB
testcase_41 AC 174 ms
24,536 KB
testcase_42 AC 172 ms
27,252 KB
testcase_43 AC 57 ms
12,512 KB
testcase_44 AC 58 ms
12,708 KB
testcase_45 AC 72 ms
15,428 KB
testcase_46 AC 66 ms
13,976 KB
testcase_47 AC 48 ms
11,156 KB
testcase_48 AC 68 ms
14,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;

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

int main() {
    cin.tie(nullptr), ios::sync_with_stdio(false);
    int N;
    cin >> N;
    vector<int> A(N);
    for (auto &a : A) cin >> a;

    vector<vector<int>> to(N);

    for (int e = 0; e < N - 1; ++e) {
        int u, v;
        cin >> u >> v;
        --u, --v;
        to.at(u).push_back(v);
        to.at(v).push_back(u);
    }

    mint ret = 0;

    auto rec = [&](auto &&self, int now, int prv) -> mint {
        mint w = A.at(now);
        for (int nxt : to.at(now)) {
            if (nxt == prv) continue;
            mint v = self(self, nxt, now);
            ret += v * w;
            w += v * A.at(now);
        }
        return w;
    };

    rec(rec, 0, -1);
    cout << ret.val() << '\n';
}
0