結果
| 問題 | No.2214 Products on Tree |
| コンテスト | |
| ユーザー |
沙耶花
|
| 提出日時 | 2023-02-10 22:03:28 |
| 言語 | C++17 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 151 ms / 3,000 ms |
| コード長 | 758 bytes |
| 記録 | |
| コンパイル時間 | 3,030 ms |
| コンパイル使用メモリ | 275,368 KB |
| 実行使用メモリ | 31,488 KB |
| 最終ジャッジ日時 | 2026-06-29 13:11:04 |
| 合計ジャッジ時間 | 7,351 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 35 |
ソースコード
#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;
}
沙耶花