結果

問題 No.2047 Path Factory
ユーザー kyawakyawa
提出日時 2022-08-19 22:56:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,682 bytes
コンパイル時間 4,500 ms
コンパイル使用メモリ 270,324 KB
実行使用メモリ 26,624 KB
最終ジャッジ日時 2024-10-08 10:13:05
合計ジャッジ時間 6,875 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 WA -
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 60 ms
7,552 KB
testcase_08 AC 47 ms
6,824 KB
testcase_09 AC 55 ms
7,296 KB
testcase_10 AC 78 ms
8,832 KB
testcase_11 AC 47 ms
6,816 KB
testcase_12 AC 28 ms
6,820 KB
testcase_13 AC 29 ms
6,820 KB
testcase_14 AC 50 ms
6,912 KB
testcase_15 AC 61 ms
7,552 KB
testcase_16 AC 44 ms
7,680 KB
testcase_17 AC 45 ms
7,424 KB
testcase_18 AC 56 ms
8,832 KB
testcase_19 AC 67 ms
10,368 KB
testcase_20 AC 103 ms
13,568 KB
testcase_21 AC 55 ms
8,448 KB
testcase_22 AC 11 ms
6,816 KB
testcase_23 AC 15 ms
6,820 KB
testcase_24 AC 13 ms
6,816 KB
testcase_25 AC 98 ms
26,624 KB
testcase_26 AC 126 ms
22,400 KB
testcase_27 AC 97 ms
11,204 KB
testcase_28 AC 60 ms
12,616 KB
testcase_29 AC 3 ms
6,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

int main(){
    int64_t N; cin >> N;
    if(N < 4){
        cout << -1 << '\n';
        return 0;
    }
    vector<vector<int64_t>> edge(N);
    for(int64_t i = 0; i < N-1; i++){
        int64_t u, v; cin >> u >> v; u--; v--;
        edge[u].push_back(v);
        edge[v].push_back(u);
    }
    vector<mint> dp1(N)/*親への遷移を切る*/, dp2(N)/*親への遷移を切らない*/;
    auto dfs = [&](auto &&self, int64_t vis, int64_t prv) -> void {
        for(auto nxt : edge[vis]){
            if(nxt == prv) continue;
            self(self, nxt, vis);
        }
        if(vis != 0 and edge[vis].size() == 1){
            dp1[vis] = 0;
            dp2[vis] = 1;
        }else{
            vector<int64_t> child;
            for(auto c : edge[vis]) if(c != prv) child.push_back(c);
            int64_t csiz = child.size();
            vector sub_count(3, vector(csiz, mint(0)));
            sub_count[0][0] = dp1[child[0]];
            sub_count[1][0] = dp2[child[0]];
            sub_count[2][0] = 0;
            for(int64_t i = 1; i < csiz; i++){
                sub_count[0][i] = sub_count[0][i-1] * dp1[child[i]];
                sub_count[1][i] = sub_count[1][i-1] * dp1[child[i]] + sub_count[0][i-1] * dp2[child[i]];
                sub_count[2][i] = sub_count[2][i-1] * dp1[child[i]] + sub_count[1][i-1] * dp2[child[i]];
            }
            dp1[vis] = sub_count[1][csiz-1] + sub_count[2][csiz-1];
            dp2[vis] = sub_count[0][csiz-1] + sub_count[1][csiz-1];
        }
    };
    dfs(dfs, 0, -1);
    cout << dp1[0].val() << '\n';
    return 0;
}
0