結果

問題 No.2214 Products on Tree
ユーザー maksimmaksim
提出日時 2023-02-10 21:44:50
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 89 ms / 3,000 ms
コード長 786 bytes
コンパイル時間 1,373 ms
コンパイル使用メモリ 170,336 KB
実行使用メモリ 30,080 KB
最終ジャッジ日時 2024-07-07 15:56:54
合計ジャッジ時間 4,477 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
8,192 KB
testcase_01 AC 4 ms
8,192 KB
testcase_02 AC 3 ms
8,192 KB
testcase_03 AC 80 ms
18,304 KB
testcase_04 AC 82 ms
18,304 KB
testcase_05 AC 75 ms
17,792 KB
testcase_06 AC 51 ms
14,848 KB
testcase_07 AC 16 ms
10,240 KB
testcase_08 AC 11 ms
9,472 KB
testcase_09 AC 21 ms
10,752 KB
testcase_10 AC 50 ms
14,592 KB
testcase_11 AC 28 ms
11,520 KB
testcase_12 AC 31 ms
12,288 KB
testcase_13 AC 87 ms
18,716 KB
testcase_14 AC 86 ms
18,688 KB
testcase_15 AC 88 ms
18,732 KB
testcase_16 AC 89 ms
18,624 KB
testcase_17 AC 85 ms
18,688 KB
testcase_18 AC 43 ms
16,000 KB
testcase_19 AC 46 ms
16,640 KB
testcase_20 AC 39 ms
15,616 KB
testcase_21 AC 32 ms
14,208 KB
testcase_22 AC 52 ms
18,944 KB
testcase_23 AC 3 ms
8,192 KB
testcase_24 AC 4 ms
8,192 KB
testcase_25 AC 3 ms
8,064 KB
testcase_26 AC 3 ms
8,064 KB
testcase_27 AC 3 ms
8,064 KB
testcase_28 AC 48 ms
24,320 KB
testcase_29 AC 15 ms
10,496 KB
testcase_30 AC 47 ms
19,008 KB
testcase_31 AC 60 ms
18,864 KB
testcase_32 AC 52 ms
18,908 KB
testcase_33 AC 63 ms
29,952 KB
testcase_34 AC 68 ms
30,080 KB
testcase_35 AC 79 ms
24,576 KB
testcase_36 AC 73 ms
24,576 KB
testcase_37 AC 56 ms
19,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
#define int long long
const int p=998244353;
const int maxn=2e5+5;
vector<int> a[maxn];
bool used[maxn];
int dp[maxn][2];
void dfs(int x)
{
    used[x]=true;
    dp[x][0]=1;dp[x][1]=1;
    for(int v:a[x])
    {
        if(!used[v])
        {
            dfs(v);
            dp[x][1]=(dp[x][0]*dp[v][1]+dp[x][1]*dp[v][0]+dp[x][1]*dp[v][1]);
            dp[x][1]%=p;
            dp[x][0]=(dp[x][0]*dp[v][0]+dp[x][0]*dp[v][1]);
            dp[x][0]%=p;
        }
    }
}
int32_t main()
{
    ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
    int n;cin>>n;
    for(int i=0;i<n-1;++i)
    {
        int x,y;cin>>x>>y;--x;--y;
        a[x].push_back(y);a[y].push_back(x);
    }
    dfs(0);
    cout<<(dp[0][1]%p+p)%p;
    return 0;
}
0