結果

問題 No.2214 Products on Tree
ユーザー Carpenters-CatCarpenters-Cat
提出日時 2023-02-11 05:32:17
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 223 ms / 3,000 ms
コード長 1,404 bytes
コンパイル時間 1,871 ms
コンパイル使用メモリ 177,976 KB
実行使用メモリ 20,764 KB
最終ジャッジ日時 2024-07-07 21:29:44
合計ジャッジ時間 7,100 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 178 ms
18,492 KB
testcase_04 AC 179 ms
18,600 KB
testcase_05 AC 171 ms
17,972 KB
testcase_06 AC 112 ms
13,436 KB
testcase_07 AC 34 ms
6,940 KB
testcase_08 AC 20 ms
6,940 KB
testcase_09 AC 43 ms
7,296 KB
testcase_10 AC 109 ms
12,904 KB
testcase_11 AC 56 ms
8,576 KB
testcase_12 AC 67 ms
9,404 KB
testcase_13 AC 187 ms
19,168 KB
testcase_14 AC 184 ms
19,196 KB
testcase_15 AC 184 ms
19,056 KB
testcase_16 AC 182 ms
19,056 KB
testcase_17 AC 223 ms
19,064 KB
testcase_18 AC 100 ms
15,116 KB
testcase_19 AC 111 ms
16,208 KB
testcase_20 AC 98 ms
15,012 KB
testcase_21 AC 73 ms
12,572 KB
testcase_22 AC 136 ms
19,604 KB
testcase_23 AC 2 ms
6,944 KB
testcase_24 AC 1 ms
6,940 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 1 ms
6,944 KB
testcase_27 AC 1 ms
6,944 KB
testcase_28 AC 111 ms
14,796 KB
testcase_29 AC 29 ms
7,040 KB
testcase_30 AC 125 ms
20,640 KB
testcase_31 AC 166 ms
20,764 KB
testcase_32 AC 139 ms
20,156 KB
testcase_33 AC 157 ms
18,968 KB
testcase_34 AC 158 ms
19,096 KB
testcase_35 AC 167 ms
18,992 KB
testcase_36 AC 170 ms
19,124 KB
testcase_37 AC 152 ms
19,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using Vi = std::vector<int> ;
using VVi = vector<Vi>;
using Vl = vector<ll>;
ll const m = 998244353;
ll mpow(ll a, ll n) {
    ll ret = 1;
    while (n) {
        if (n & 1) {
            ret = (ret * a) % m;
        }
        a = (a * a) % m;
        n >>= 1;
    }
    return ret;
}

int main () {
    int N;
    cin >> N;
    VVi tr(N);
    for (int i = 1; i < N; i ++) {
        int a, b;
        cin >> a >> b;
        tr[--a].push_back(--b);
        tr[b].push_back(a);
    }
    queue<int> que;
    Vi tpr;
    Vi par(N, -1);
    par[0] = -2;
    que.push(0);
    tpr.push_back(0);
    while (!que.empty()) {
        int u = que.front();
        que.pop();
        for (auto v : tr[u]) {
            if (par[v] == -1) {
                par[v] = u;
                tpr.push_back(v);
                que.push(v);
            }
        }
    }
    reverse(tpr.begin(), tpr.end());
    Vl dp0(N, 0), dp1(N, 0);
    for (int i : tpr) {
        dp0[i] = dp1[i] = 1;
        for (auto v : tr[i]) {
            if (par[v] == i) {
                ll x = dp0[v] + dp1[v];
                x %= m;
                dp0[i] *= x;
                dp0[i] %= m;
                dp1[i] += (dp1[v] * mpow(x, m - 2)) % m;
                dp1[i] %= m;
            }
        }
        dp1[i] = (dp1[i] * dp0[i]) % m;
    }
    cout << dp1[0] << endl;
}
0