結果

問題 No.2214 Products on Tree
ユーザー 沙耶花沙耶花
提出日時 2023-02-10 22:03:28
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 218 ms / 3,000 ms
コード長 758 bytes
コンパイル時間 4,049 ms
コンパイル使用メモリ 264,080 KB
実行使用メモリ 31,468 KB
最終ジャッジ日時 2024-07-07 16:17:49
合計ジャッジ時間 9,656 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 188 ms
15,300 KB
testcase_04 AC 202 ms
15,568 KB
testcase_05 AC 184 ms
14,956 KB
testcase_06 AC 113 ms
12,032 KB
testcase_07 AC 29 ms
7,040 KB
testcase_08 AC 19 ms
6,272 KB
testcase_09 AC 40 ms
7,552 KB
testcase_10 AC 108 ms
11,540 KB
testcase_11 AC 55 ms
8,320 KB
testcase_12 AC 63 ms
9,216 KB
testcase_13 AC 203 ms
15,780 KB
testcase_14 AC 218 ms
15,860 KB
testcase_15 AC 218 ms
16,000 KB
testcase_16 AC 201 ms
15,856 KB
testcase_17 AC 213 ms
15,856 KB
testcase_18 AC 97 ms
13,312 KB
testcase_19 AC 109 ms
13,928 KB
testcase_20 AC 94 ms
12,940 KB
testcase_21 AC 71 ms
11,264 KB
testcase_22 AC 127 ms
16,260 KB
testcase_23 AC 3 ms
6,940 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 3 ms
6,940 KB
testcase_26 AC 3 ms
6,940 KB
testcase_27 AC 3 ms
6,944 KB
testcase_28 AC 108 ms
24,192 KB
testcase_29 AC 28 ms
7,424 KB
testcase_30 AC 108 ms
16,444 KB
testcase_31 AC 174 ms
16,444 KB
testcase_32 AC 131 ms
16,460 KB
testcase_33 AC 154 ms
31,312 KB
testcase_34 AC 149 ms
31,468 KB
testcase_35 AC 177 ms
23,524 KB
testcase_36 AC 182 ms
23,580 KB
testcase_37 AC 139 ms
15,704 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 1000000000000000001

mint dp[200005][2];
vector<vector<int>> E;

void dfs(int c,int p){
	dp[c][0] = 1;
	rep(i,E[c].size()){
		int to = E[c][i];
		if(to==p)continue;
		dfs(to,c);
		mint x = dp[to][0],y = dp[to][1];
		dp[c][1] = dp[c][0] * y + dp[c][1] * (x + (y));
		dp[c][0] = dp[c][0]*x + dp[c][0]*y;
	}
	dp[c][1] += dp[c][0];
}

int main(){
	int n;
	cin>>n;
	E.resize(n);
	rep(i,n-1){
		int a,b;
		cin>>a>>b;
		a--,b--;
		E[a].push_back(b);
		E[b].push_back(a);
	}
	
	dfs(0,-1);
	
	cout<<dp[0][1].val()<<endl;
	
	
	return 0;
}
0