結果

問題 No.2047 Path Factory
ユーザー t98slidert98slider
提出日時 2022-08-24 10:50:10
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 1,039 bytes
コンパイル時間 1,595 ms
コンパイル使用メモリ 175,256 KB
実行使用メモリ 28,160 KB
最終ジャッジ日時 2024-10-15 13:33:26
合計ジャッジ時間 3,414 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 1 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 30 ms
8,192 KB
testcase_08 AC 25 ms
7,168 KB
testcase_09 AC 26 ms
7,808 KB
testcase_10 AC 39 ms
9,728 KB
testcase_11 AC 24 ms
7,168 KB
testcase_12 AC 15 ms
5,504 KB
testcase_13 AC 15 ms
5,632 KB
testcase_14 AC 24 ms
7,296 KB
testcase_15 AC 31 ms
8,192 KB
testcase_16 AC 23 ms
8,192 KB
testcase_17 AC 22 ms
7,936 KB
testcase_18 AC 28 ms
9,728 KB
testcase_19 AC 33 ms
11,264 KB
testcase_20 AC 53 ms
14,720 KB
testcase_21 AC 27 ms
9,088 KB
testcase_22 AC 6 ms
5,248 KB
testcase_23 AC 7 ms
5,248 KB
testcase_24 AC 7 ms
5,248 KB
testcase_25 AC 48 ms
28,160 KB
testcase_26 AC 62 ms
23,936 KB
testcase_27 AC 45 ms
12,976 KB
testcase_28 AC 31 ms
14,836 KB
testcase_29 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n, u, v;
    cin >> n;
    vector<vector<int>> g(n);
    for(int i = 1; i < n; i++){
        cin >> u >> v;
        g[--u].emplace_back(--v);
        g[v].emplace_back(u);
    }
    vector<array<ll,3>> dp(n, {0, 0, 0});
    function<void(int,int)> dfs = [&](int v, int p){
        vector<array<ll,3>> a;
        for(auto &&u:g[v]){
            if(u == p)continue;
            dfs(u, v);
            a.push_back({dp[u][0], dp[u][1], dp[u][2]});
        }
        int c = a.size();
        dp[v][0] = 1;
        for(int i = 0; i < c; i++){
            array<ll,3> ndp{};
            for(int j = 0; j < 3; j++){
                if(j < 2)(ndp[j + 1] += dp[v][j] * (a[i][0] + a[i][1])) %= 998244353;
                (ndp[j] += dp[v][j] * (a[i][1] + a[i][2])) %= 998244353;
            }
            swap(dp[v], ndp);
        }
    };
    dfs(0, -1);
    cout << (dp[0][1] + dp[0][2]) % 998244353 << '\n';
}
0