結果

問題 No.2949 Product on Tree
ユーザー たたき@競プロたたき@競プロ
提出日時 2024-10-26 03:35:04
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 350 ms / 2,000 ms
コード長 844 bytes
コンパイル時間 5,394 ms
コンパイル使用メモリ 310,804 KB
実行使用メモリ 22,400 KB
最終ジャッジ日時 2024-10-26 03:35:27
合計ジャッジ時間 22,801 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 307 ms
14,720 KB
testcase_04 AC 285 ms
14,448 KB
testcase_05 AC 295 ms
14,920 KB
testcase_06 AC 323 ms
14,808 KB
testcase_07 AC 304 ms
14,528 KB
testcase_08 AC 296 ms
15,092 KB
testcase_09 AC 346 ms
15,060 KB
testcase_10 AC 300 ms
15,436 KB
testcase_11 AC 292 ms
15,692 KB
testcase_12 AC 315 ms
16,804 KB
testcase_13 AC 331 ms
17,108 KB
testcase_14 AC 298 ms
17,920 KB
testcase_15 AC 300 ms
18,976 KB
testcase_16 AC 302 ms
18,016 KB
testcase_17 AC 324 ms
18,524 KB
testcase_18 AC 303 ms
18,348 KB
testcase_19 AC 302 ms
19,680 KB
testcase_20 AC 309 ms
19,360 KB
testcase_21 AC 327 ms
19,432 KB
testcase_22 AC 301 ms
19,916 KB
testcase_23 AC 298 ms
14,980 KB
testcase_24 AC 301 ms
14,972 KB
testcase_25 AC 324 ms
15,084 KB
testcase_26 AC 303 ms
15,032 KB
testcase_27 AC 301 ms
15,104 KB
testcase_28 AC 323 ms
15,064 KB
testcase_29 AC 304 ms
15,232 KB
testcase_30 AC 309 ms
15,488 KB
testcase_31 AC 304 ms
16,220 KB
testcase_32 AC 329 ms
16,300 KB
testcase_33 AC 311 ms
18,252 KB
testcase_34 AC 307 ms
20,548 KB
testcase_35 AC 308 ms
18,816 KB
testcase_36 AC 345 ms
21,300 KB
testcase_37 AC 317 ms
21,420 KB
testcase_38 AC 321 ms
19,904 KB
testcase_39 AC 350 ms
20,092 KB
testcase_40 AC 314 ms
22,276 KB
testcase_41 AC 308 ms
20,932 KB
testcase_42 AC 321 ms
22,400 KB
testcase_43 AC 143 ms
12,740 KB
testcase_44 AC 148 ms
12,684 KB
testcase_45 AC 188 ms
15,536 KB
testcase_46 AC 168 ms
14,208 KB
testcase_47 AC 124 ms
11,260 KB
testcase_48 AC 175 ms
14,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using mint=modint998244353; //1000000007;
using ll=long long;
using pp=pair<int,int>;
#define sr string 
#define vc vector
#define fi first
#define se second
#define rep(i,n) for(int i=0;i<(int)n;i++)
#define pb push_back
#define all(v) v.begin(),v.end()
#define pque priority_queue
#define bpc(a) __builtin_popcount(a)
int main(){
  int n;cin>>n;
  vc<int>x(n); rep(i,n)cin>>x[i];
  vc v(n,vc<int>(0));
  rep(i,n-1){
    int a,b;cin>>a>>b; 
    a--;b--;
    v[a].pb(b); v[b].pb(a);
  }
  mint ans=0;
  auto f=[&](auto f,int a,int p)->mint{
    mint res=0;
    for(auto au:v[a])if(au!=p){
      mint t=f(f,au,a);
      ans+=res*t*x[a];
      res+=t;
    }
    ans+=res*x[a];
    res=(res+1)*x[a];
    return res;
  };
  f(f,0,-1);
  cout<<ans.val();
}
0