結果

問題 No.2949 Product on Tree
ユーザー cled0328cled0328
提出日時 2024-10-26 00:05:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 362 ms / 2,000 ms
コード長 664 bytes
コンパイル時間 2,780 ms
コンパイル使用メモリ 206,664 KB
実行使用メモリ 26,880 KB
最終ジャッジ日時 2024-10-26 00:06:13
合計ジャッジ時間 20,635 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
9,564 KB
testcase_01 AC 4 ms
9,580 KB
testcase_02 AC 4 ms
9,776 KB
testcase_03 AC 344 ms
16,576 KB
testcase_04 AC 319 ms
16,468 KB
testcase_05 AC 317 ms
16,440 KB
testcase_06 AC 327 ms
16,476 KB
testcase_07 AC 344 ms
16,432 KB
testcase_08 AC 328 ms
16,804 KB
testcase_09 AC 330 ms
16,832 KB
testcase_10 AC 330 ms
17,336 KB
testcase_11 AC 336 ms
17,884 KB
testcase_12 AC 322 ms
19,432 KB
testcase_13 AC 322 ms
19,784 KB
testcase_14 AC 341 ms
21,152 KB
testcase_15 AC 322 ms
22,564 KB
testcase_16 AC 318 ms
21,316 KB
testcase_17 AC 318 ms
21,808 KB
testcase_18 AC 355 ms
21,456 KB
testcase_19 AC 322 ms
23,164 KB
testcase_20 AC 337 ms
22,848 KB
testcase_21 AC 362 ms
22,928 KB
testcase_22 AC 319 ms
23,676 KB
testcase_23 AC 327 ms
16,616 KB
testcase_24 AC 323 ms
16,796 KB
testcase_25 AC 342 ms
16,848 KB
testcase_26 AC 329 ms
16,860 KB
testcase_27 AC 324 ms
16,768 KB
testcase_28 AC 315 ms
16,720 KB
testcase_29 AC 350 ms
17,064 KB
testcase_30 AC 329 ms
17,536 KB
testcase_31 AC 336 ms
18,312 KB
testcase_32 AC 351 ms
18,432 KB
testcase_33 AC 325 ms
21,036 KB
testcase_34 AC 334 ms
24,092 KB
testcase_35 AC 339 ms
22,068 KB
testcase_36 AC 362 ms
25,184 KB
testcase_37 AC 353 ms
25,424 KB
testcase_38 AC 343 ms
23,328 KB
testcase_39 AC 348 ms
23,676 KB
testcase_40 AC 350 ms
26,576 KB
testcase_41 AC 334 ms
24,548 KB
testcase_42 AC 339 ms
26,880 KB
testcase_43 AC 148 ms
15,380 KB
testcase_44 AC 148 ms
15,396 KB
testcase_45 AC 189 ms
16,972 KB
testcase_46 AC 173 ms
16,256 KB
testcase_47 AC 129 ms
14,408 KB
testcase_48 AC 175 ms
16,408 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=a[x],ret2=0;
    for(auto i:g[x]){
        if(i==par)continue;
        auto [p,q]=dfs(i,x);
        ret2+=ret1*p+q;
        ret1+=p*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