結果

問題 No.2214 Products on Tree
ユーザー kmjpkmjp
提出日時 2023-02-10 23:06:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 80 ms / 3,000 ms
コード長 1,479 bytes
コンパイル時間 1,826 ms
コンパイル使用メモリ 204,120 KB
実行使用メモリ 33,956 KB
最終ジャッジ日時 2024-07-07 17:08:13
合計ジャッジ時間 5,218 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
8,192 KB
testcase_01 AC 3 ms
8,192 KB
testcase_02 AC 3 ms
8,192 KB
testcase_03 AC 75 ms
18,044 KB
testcase_04 AC 74 ms
18,176 KB
testcase_05 AC 71 ms
17,992 KB
testcase_06 AC 48 ms
15,740 KB
testcase_07 AC 16 ms
12,292 KB
testcase_08 AC 11 ms
10,952 KB
testcase_09 AC 19 ms
13,096 KB
testcase_10 AC 46 ms
15,564 KB
testcase_11 AC 25 ms
13,224 KB
testcase_12 AC 28 ms
14,076 KB
testcase_13 AC 77 ms
18,516 KB
testcase_14 AC 78 ms
18,528 KB
testcase_15 AC 80 ms
18,468 KB
testcase_16 AC 77 ms
18,452 KB
testcase_17 AC 77 ms
18,372 KB
testcase_18 AC 43 ms
16,856 KB
testcase_19 AC 44 ms
17,296 KB
testcase_20 AC 39 ms
16,704 KB
testcase_21 AC 30 ms
15,596 KB
testcase_22 AC 58 ms
18,756 KB
testcase_23 AC 4 ms
11,112 KB
testcase_24 AC 3 ms
10,052 KB
testcase_25 AC 3 ms
11,132 KB
testcase_26 AC 3 ms
11,376 KB
testcase_27 AC 3 ms
11,384 KB
testcase_28 AC 48 ms
27,796 KB
testcase_29 AC 13 ms
13,020 KB
testcase_30 AC 43 ms
18,936 KB
testcase_31 AC 61 ms
18,892 KB
testcase_32 AC 53 ms
18,924 KB
testcase_33 AC 69 ms
33,892 KB
testcase_34 AC 66 ms
33,956 KB
testcase_35 AC 75 ms
26,080 KB
testcase_36 AC 73 ms
26,084 KB
testcase_37 AC 57 ms
18,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define FORR2(x,y,arr) for(auto& [x,y]:arr)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
template<class T> bool chmax(T &a, const T &b) { if(a<b){a=b;return 1;}return 0;}
template<class T> bool chmin(T &a, const T &b) { if(a>b){a=b;return 1;}return 0;}
//-------------------------------------------------------


int N;
vector<int> E[202020];
const ll mo=998244353;

ll S[202020];
ll M[202020];
int C[202020];

ll modpow(ll a, ll n = mo-2) {
	ll r=1;a%=mo;
	while(n) r=r*((n%2)?a:1)%mo,a=a*a%mo,n>>=1;
	return r;
}


void dfs(int cur,int pre) {
	S[cur]=M[cur]=C[cur]=1;
	FORR(e,E[cur]) if(e!=pre) {
		ll PS=S[cur];
		ll PM=M[cur];
		S[cur]=M[cur]=0;
		dfs(e,cur);
		//con
		(S[cur]+=PS*M[e]+PM*S[e])%=mo;
		(M[cur]+=PM*M[e])%=mo;
		//dis
		(S[cur]+=PS*S[e])%=mo;
		(M[cur]+=PM*S[e])%=mo;
		C[cur]+=C[e];
		
		
		
	}
}

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N;
	FOR(i,N-1) {
		cin>>x>>y;
		E[x-1].push_back(y-1);
		E[y-1].push_back(x-1);
	}
	dfs(0,0);
	cout<<S[0]<<endl;
		
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0