結果

問題 No.2949 Product on Tree
ユーザー nouka28nouka28
提出日時 2024-06-21 15:31:09
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 373 ms / 2,000 ms
コード長 722 bytes
コンパイル時間 5,384 ms
コンパイル使用メモリ 311,352 KB
実行使用メモリ 29,124 KB
最終ジャッジ日時 2024-09-23 07:20:10
合計ジャッジ時間 23,516 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 349 ms
14,744 KB
testcase_04 AC 341 ms
14,544 KB
testcase_05 AC 352 ms
14,848 KB
testcase_06 AC 355 ms
14,924 KB
testcase_07 AC 338 ms
14,676 KB
testcase_08 AC 350 ms
15,080 KB
testcase_09 AC 353 ms
15,184 KB
testcase_10 AC 338 ms
15,944 KB
testcase_11 AC 345 ms
16,516 KB
testcase_12 AC 343 ms
18,852 KB
testcase_13 AC 337 ms
19,304 KB
testcase_14 AC 350 ms
20,880 KB
testcase_15 AC 341 ms
23,152 KB
testcase_16 AC 348 ms
21,216 KB
testcase_17 AC 346 ms
22,160 KB
testcase_18 AC 346 ms
21,864 KB
testcase_19 AC 354 ms
24,048 KB
testcase_20 AC 358 ms
23,492 KB
testcase_21 AC 357 ms
23,792 KB
testcase_22 AC 347 ms
24,988 KB
testcase_23 AC 348 ms
15,144 KB
testcase_24 AC 352 ms
15,112 KB
testcase_25 AC 354 ms
14,984 KB
testcase_26 AC 353 ms
14,908 KB
testcase_27 AC 357 ms
15,272 KB
testcase_28 AC 354 ms
15,236 KB
testcase_29 AC 356 ms
15,496 KB
testcase_30 AC 358 ms
15,976 KB
testcase_31 AC 363 ms
17,160 KB
testcase_32 AC 364 ms
17,344 KB
testcase_33 AC 363 ms
21,100 KB
testcase_34 AC 373 ms
25,416 KB
testcase_35 AC 366 ms
22,340 KB
testcase_36 AC 368 ms
26,920 KB
testcase_37 AC 363 ms
27,340 KB
testcase_38 AC 365 ms
24,280 KB
testcase_39 AC 364 ms
24,760 KB
testcase_40 AC 364 ms
28,912 KB
testcase_41 AC 365 ms
26,268 KB
testcase_42 AC 372 ms
29,124 KB
testcase_43 AC 166 ms
12,616 KB
testcase_44 AC 168 ms
12,684 KB
testcase_45 AC 216 ms
15,408 KB
testcase_46 AC 193 ms
14,176 KB
testcase_47 AC 142 ms
11,256 KB
testcase_48 AC 201 ms
14,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

#include<atcoder/all>
using mint=atcoder::modint998244353;

int main(){
    int n;cin>>n;
    vector<mint> a(n);for(auto&e:a){int x;cin>>x;e=x;}
    vector<vector<int>> g(n);
    for(int i=0;i<n-1;i++){
        int u,v;cin>>u>>v;
        u--;v--;
        g[u].push_back(v);
        g[v].push_back(u);
    }
    mint ans=0;

    auto dfs=[&](auto dfs,int p,int prev=-1)->mint {
        mint sm1=0,sm2=0;
        for(auto&e:g[p]){
            if(e==prev)continue;
            mint esm=dfs(dfs,e,p);
            sm1+=esm;
            sm2+=esm*esm;
        }
        ans+=a[p]*(sm1+(sm1*sm1-sm2)/2);
        return a[p]*(sm1+1);
    };
    dfs(dfs,0);
    cout<<ans.val()<<endl;
}
0