結果

問題 No.2047 Path Factory
ユーザー kotatsugamekotatsugame
提出日時 2022-08-19 21:54:29
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 623 bytes
コンパイル時間 779 ms
コンパイル使用メモリ 72,596 KB
実行使用メモリ 20,608 KB
最終ジャッジ日時 2024-10-15 13:30:11
合計ジャッジ時間 3,001 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
8,064 KB
testcase_01 AC 5 ms
8,064 KB
testcase_02 AC 4 ms
8,064 KB
testcase_03 AC 4 ms
7,936 KB
testcase_04 AC 5 ms
8,176 KB
testcase_05 AC 5 ms
8,064 KB
testcase_06 AC 5 ms
8,064 KB
testcase_07 AC 58 ms
10,048 KB
testcase_08 AC 45 ms
9,600 KB
testcase_09 AC 55 ms
9,984 KB
testcase_10 AC 78 ms
10,624 KB
testcase_11 AC 45 ms
9,600 KB
testcase_12 AC 28 ms
8,960 KB
testcase_13 AC 29 ms
9,088 KB
testcase_14 AC 45 ms
9,728 KB
testcase_15 AC 58 ms
10,112 KB
testcase_16 AC 42 ms
10,368 KB
testcase_17 AC 40 ms
10,308 KB
testcase_18 AC 49 ms
10,944 KB
testcase_19 AC 59 ms
11,648 KB
testcase_20 AC 93 ms
13,440 KB
testcase_21 AC 46 ms
10,692 KB
testcase_22 AC 11 ms
8,768 KB
testcase_23 AC 16 ms
8,832 KB
testcase_24 AC 13 ms
8,768 KB
testcase_25 AC 81 ms
20,608 KB
testcase_26 AC 112 ms
18,176 KB
testcase_27 AC 93 ms
11,268 KB
testcase_28 AC 58 ms
11,344 KB
testcase_29 AC 4 ms
8,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
#include<atcoder/modint>
using namespace std;
using mint=atcoder::modint998244353;
int N;
vector<int>G[1<<17];
mint dp[1<<17][3];
void dfs(int u,int p)
{
	mint a=1,b=0,c=0;
	for(int v:G[u])if(v!=p)
	{
		dfs(v,u);
		mint na=a*(dp[v][0]+dp[v][1]);
		mint nb=b*(dp[v][0]+dp[v][1])+a*(dp[v][1]+dp[v][2]);
		mint nc=c*(dp[v][0]+dp[v][1])+b*(dp[v][1]+dp[v][2]);
		a=na,b=nb,c=nc;
	}
	dp[u][0]=c;
	dp[u][1]=b;
	dp[u][2]=a;
}
int main()
{
	cin>>N;
	for(int i=1;i<N;i++)
	{
		int u,v;
		cin>>u>>v;
		G[u].push_back(v);
		G[v].push_back(u);
	}
	dfs(1,0);
	cout<<(dp[1][0]+dp[1][1]).val()<<endl;
}
0