結果

問題 No.2047 Path Factory
ユーザー 沙耶花沙耶花
提出日時 2022-08-19 21:54:05
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 904 bytes
コンパイル時間 4,455 ms
コンパイル使用メモリ 272,548 KB
実行使用メモリ 26,752 KB
最終ジャッジ日時 2024-10-15 13:29:56
合計ジャッジ時間 7,302 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 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 76 ms
10,112 KB
testcase_08 AC 55 ms
8,704 KB
testcase_09 AC 68 ms
9,728 KB
testcase_10 AC 102 ms
12,288 KB
testcase_11 AC 53 ms
8,704 KB
testcase_12 AC 31 ms
6,528 KB
testcase_13 AC 32 ms
6,656 KB
testcase_14 AC 58 ms
8,960 KB
testcase_15 AC 68 ms
10,368 KB
testcase_16 AC 48 ms
9,216 KB
testcase_17 AC 50 ms
9,216 KB
testcase_18 AC 60 ms
10,752 KB
testcase_19 AC 72 ms
12,416 KB
testcase_20 AC 122 ms
16,512 KB
testcase_21 AC 57 ms
10,368 KB
testcase_22 AC 12 ms
5,248 KB
testcase_23 AC 15 ms
5,248 KB
testcase_24 AC 14 ms
5,248 KB
testcase_25 AC 97 ms
26,752 KB
testcase_26 AC 141 ms
23,552 KB
testcase_27 AC 116 ms
14,464 KB
testcase_28 AC 69 ms
14,584 KB
testcase_29 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 4000000000000000001
int n;
vector<vector<int>> E;
vector<vector<mint>> dp;

void dfs(int cur,int p){
	vector<mint> tdp(3,0);
	tdp[0] = 1;
	rep(i,E[cur].size()){
		int to = E[cur][i];
		if(to==p)continue;
		dfs(to,cur);
		vector<mint> ndp(3,0);
		rep(j,3){
			ndp[j] += tdp[j] * dp[to][1];
			if(j!=2){
				ndp[j+1] += tdp[j] * dp[to][0];
			}
		}
		swap(tdp,ndp);
	}
	
	dp[cur][0] = tdp[0] + tdp[1];
	dp[cur][1] = tdp[1] + tdp[2];
	
}

int main() {	
	cin>>n;
	E.resize(n);
	rep(i,n-1){
		int u,v;
		cin>>u>>v;
		u--,v--;
		E[u].push_back(v);
		E[v].push_back(u);
	}
	dp.resize(n,vector<mint>(2,0));
	dfs(0,-1);
	mint ans = dp[0][1];
	
	cout<<ans.val()<<endl;
    return 0;
}
0