結果

問題 No.2214 Products on Tree
ユーザー V_MelvilleV_Melville
提出日時 2023-02-22 19:22:53
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 227 ms / 3,000 ms
コード長 862 bytes
コンパイル時間 5,295 ms
コンパイル使用メモリ 311,796 KB
実行使用メモリ 23,828 KB
最終ジャッジ日時 2024-07-22 20:19:36
合計ジャッジ時間 12,537 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 203 ms
15,300 KB
testcase_04 AC 209 ms
15,568 KB
testcase_05 AC 200 ms
14,756 KB
testcase_06 AC 138 ms
11,352 KB
testcase_07 AC 33 ms
5,760 KB
testcase_08 AC 20 ms
5,376 KB
testcase_09 AC 43 ms
6,528 KB
testcase_10 AC 120 ms
11,008 KB
testcase_11 AC 57 ms
7,424 KB
testcase_12 AC 69 ms
8,192 KB
testcase_13 AC 222 ms
15,924 KB
testcase_14 AC 221 ms
15,920 KB
testcase_15 AC 216 ms
15,768 KB
testcase_16 AC 225 ms
15,916 KB
testcase_17 AC 227 ms
15,824 KB
testcase_18 AC 100 ms
12,820 KB
testcase_19 AC 105 ms
13,648 KB
testcase_20 AC 95 ms
12,436 KB
testcase_21 AC 73 ms
10,536 KB
testcase_22 AC 141 ms
16,336 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,944 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 2 ms
6,944 KB
testcase_28 AC 108 ms
18,380 KB
testcase_29 AC 30 ms
6,940 KB
testcase_30 AC 114 ms
16,544 KB
testcase_31 AC 181 ms
16,672 KB
testcase_32 AC 144 ms
16,568 KB
testcase_33 AC 152 ms
23,764 KB
testcase_34 AC 152 ms
23,828 KB
testcase_35 AC 188 ms
19,708 KB
testcase_36 AC 186 ms
19,816 KB
testcase_37 AC 143 ms
15,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#if __has_include(<atcoder/all>)
#include <atcoder/all>
using namespace atcoder;
#endif
#define rep(i, n) for (int i = 0; i < (n); ++i)

using namespace std;
using mint = modint998244353;

int main() {
    int n;
    cin >> n;
    
    vector<vector<int>> to(n);
    rep(i, n-1) {
        int a, b;
        cin >> a >> b;
        --a; --b;
        to[a].push_back(b);
        to[b].push_back(a);
    }
    
    vector<array<mint, 2>> dp(n);
    auto dfs = [&](auto f, int v, int p=-1) -> void {
        dp[v][0] = dp[v][1] = 1;
        for (int u : to[v]) {
            if (u == p) continue;
            f(f, u, v);
            mint x = dp[u][0], y = dp[u][1];
            dp[v][1] = dp[v][0]*y + dp[v][1]*(x+y);
            dp[v][0] *= x+y;
        }
    };
    dfs(dfs, 0);
    
    cout << dp[0][1].val() << '\n';
    
    return 0;
}
0