結果

問題 No.2949 Product on Tree
ユーザー cled0328cled0328
提出日時 2024-10-25 22:07:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 328 ms / 2,000 ms
コード長 708 bytes
コンパイル時間 2,157 ms
コンパイル使用メモリ 206,380 KB
実行使用メモリ 26,844 KB
最終ジャッジ日時 2024-10-25 22:08:13
合計ジャッジ時間 18,166 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
9,688 KB
testcase_01 AC 4 ms
9,448 KB
testcase_02 AC 4 ms
9,640 KB
testcase_03 AC 284 ms
16,444 KB
testcase_04 AC 281 ms
16,440 KB
testcase_05 AC 309 ms
16,588 KB
testcase_06 AC 293 ms
16,660 KB
testcase_07 AC 289 ms
16,540 KB
testcase_08 AC 291 ms
16,864 KB
testcase_09 AC 288 ms
17,020 KB
testcase_10 AC 306 ms
17,256 KB
testcase_11 AC 312 ms
17,764 KB
testcase_12 AC 299 ms
19,512 KB
testcase_13 AC 303 ms
19,784 KB
testcase_14 AC 299 ms
20,872 KB
testcase_15 AC 292 ms
22,592 KB
testcase_16 AC 308 ms
21,368 KB
testcase_17 AC 304 ms
21,832 KB
testcase_18 AC 298 ms
21,680 KB
testcase_19 AC 310 ms
23,112 KB
testcase_20 AC 298 ms
22,732 KB
testcase_21 AC 311 ms
22,824 KB
testcase_22 AC 303 ms
23,816 KB
testcase_23 AC 309 ms
16,692 KB
testcase_24 AC 301 ms
16,680 KB
testcase_25 AC 289 ms
16,720 KB
testcase_26 AC 298 ms
16,724 KB
testcase_27 AC 294 ms
16,852 KB
testcase_28 AC 301 ms
16,936 KB
testcase_29 AC 311 ms
17,048 KB
testcase_30 AC 277 ms
17,340 KB
testcase_31 AC 297 ms
18,160 KB
testcase_32 AC 301 ms
18,676 KB
testcase_33 AC 295 ms
21,100 KB
testcase_34 AC 320 ms
24,216 KB
testcase_35 AC 303 ms
22,024 KB
testcase_36 AC 318 ms
25,136 KB
testcase_37 AC 308 ms
25,540 KB
testcase_38 AC 312 ms
23,292 KB
testcase_39 AC 289 ms
23,656 KB
testcase_40 AC 297 ms
26,556 KB
testcase_41 AC 309 ms
24,748 KB
testcase_42 AC 328 ms
26,844 KB
testcase_43 AC 140 ms
15,384 KB
testcase_44 AC 144 ms
15,484 KB
testcase_45 AC 185 ms
16,972 KB
testcase_46 AC 168 ms
16,380 KB
testcase_47 AC 123 ms
14,404 KB
testcase_48 AC 170 ms
16,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/modint>
using namespace std;
using mint=atcoder::modint998244353;
int n,a[2<<17];
vector<int> g[2<<17];
pair<mint,mint> dfs(int x,int par){//xから下に伸びるpathの合計,xの下で完結したpathの合計
    mint ret1=0,ret2=0;
    for(auto i:g[x]){
        if(i==par)continue;
        auto [p,q]=dfs(i,x);
        ret2+=ret1*p;
        ret2+=q;
        ret1+=p*a[x];
    }
    ret2+=ret1;
    ret1+=a[x];
    return{ret1,ret2};
}
int main(){
    cin>>n;
    for(int i=0;i<n;i++)cin>>a[i];
    for(int i=1;i<n;i++){
        int u,v;cin>>u>>v;u--,v--;
        g[u].push_back(v);
        g[v].push_back(u);
    }
    cout<<dfs(0,0).second.val()<<"\n";
    
}
0