結果

問題 No.2047 Path Factory
ユーザー sapphire__15sapphire__15
提出日時 2022-05-23 22:51:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 107 ms / 2,000 ms
コード長 914 bytes
コンパイル時間 668 ms
コンパイル使用メモリ 76,344 KB
実行使用メモリ 16,896 KB
最終ジャッジ日時 2024-10-15 13:26:34
合計ジャッジ時間 3,944 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,888 KB
testcase_01 AC 3 ms
5,632 KB
testcase_02 AC 3 ms
5,760 KB
testcase_03 AC 4 ms
5,760 KB
testcase_04 AC 4 ms
5,888 KB
testcase_05 AC 3 ms
5,760 KB
testcase_06 AC 3 ms
5,760 KB
testcase_07 AC 54 ms
7,808 KB
testcase_08 AC 45 ms
7,424 KB
testcase_09 AC 51 ms
7,680 KB
testcase_10 AC 76 ms
8,448 KB
testcase_11 AC 45 ms
7,296 KB
testcase_12 AC 27 ms
6,656 KB
testcase_13 AC 27 ms
6,912 KB
testcase_14 AC 45 ms
7,552 KB
testcase_15 AC 57 ms
7,808 KB
testcase_16 AC 41 ms
7,808 KB
testcase_17 AC 39 ms
7,680 KB
testcase_18 AC 46 ms
8,448 KB
testcase_19 AC 57 ms
9,216 KB
testcase_20 AC 89 ms
10,752 KB
testcase_21 AC 47 ms
8,192 KB
testcase_22 AC 10 ms
6,656 KB
testcase_23 AC 13 ms
6,400 KB
testcase_24 AC 13 ms
6,272 KB
testcase_25 AC 78 ms
16,896 KB
testcase_26 AC 107 ms
14,848 KB
testcase_27 AC 85 ms
9,216 KB
testcase_28 AC 56 ms
9,080 KB
testcase_29 AC 4 ms
6,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

const size_t MAX_N = 100100;
const long long MOD = 998244353;
vector<int> edge[MAX_N];

using Pll = pair<long long, long long>;

// {connect, disconnect}
Pll dfs(int now, int prv = -1) {
    // {must, can, cannot} connect with parent
    long long dp[3] = {1, 0, 0};
    for(auto &child : edge[now]) {
        if(child == prv) continue;
        auto dp_sub = dfs(child, now);
        for(int i = 2; 0 <= i; i--) {
            dp[i] *= dp_sub.second;
            if(i > 0) dp[i] += dp[i-1] * dp_sub.first;
            dp[i] %= MOD;
        }
    }
    return {dp[0] + dp[1], dp[1] + dp[2]};
}

int main() {
    int n; cin >> n;
    for(int i = 0; i < n-1; i++) {
        int u, v; cin >> u >> v;
        --u;
        --v;
        edge[u].emplace_back(v);
        edge[v].emplace_back(u);
    }
    cout << dfs(0).second % MOD << endl;
}
0