結果

問題 No.2949 Product on Tree
ユーザー Nzt3Nzt3
提出日時 2024-10-25 22:11:50
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 231 ms / 2,000 ms
コード長 955 bytes
コンパイル時間 3,537 ms
コンパイル使用メモリ 257,168 KB
実行使用メモリ 34,700 KB
最終ジャッジ日時 2024-10-25 22:12:18
合計ジャッジ時間 14,999 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 185 ms
15,548 KB
testcase_04 AC 186 ms
15,320 KB
testcase_05 AC 203 ms
15,668 KB
testcase_06 AC 197 ms
15,644 KB
testcase_07 AC 185 ms
15,328 KB
testcase_08 AC 189 ms
15,940 KB
testcase_09 AC 197 ms
16,396 KB
testcase_10 AC 194 ms
16,984 KB
testcase_11 AC 231 ms
17,900 KB
testcase_12 AC 203 ms
21,064 KB
testcase_13 AC 198 ms
21,804 KB
testcase_14 AC 199 ms
23,804 KB
testcase_15 AC 199 ms
27,080 KB
testcase_16 AC 203 ms
24,492 KB
testcase_17 AC 205 ms
25,436 KB
testcase_18 AC 203 ms
25,196 KB
testcase_19 AC 212 ms
28,000 KB
testcase_20 AC 212 ms
27,132 KB
testcase_21 AC 216 ms
27,464 KB
testcase_22 AC 225 ms
29,176 KB
testcase_23 AC 191 ms
15,900 KB
testcase_24 AC 190 ms
15,836 KB
testcase_25 AC 200 ms
15,692 KB
testcase_26 AC 198 ms
15,788 KB
testcase_27 AC 197 ms
15,856 KB
testcase_28 AC 210 ms
16,184 KB
testcase_29 AC 196 ms
16,336 KB
testcase_30 AC 200 ms
17,244 KB
testcase_31 AC 203 ms
18,708 KB
testcase_32 AC 204 ms
19,148 KB
testcase_33 AC 207 ms
24,056 KB
testcase_34 AC 228 ms
29,788 KB
testcase_35 AC 218 ms
25,876 KB
testcase_36 AC 218 ms
31,768 KB
testcase_37 AC 216 ms
32,216 KB
testcase_38 AC 222 ms
28,380 KB
testcase_39 AC 229 ms
28,916 KB
testcase_40 AC 224 ms
34,360 KB
testcase_41 AC 223 ms
30,880 KB
testcase_42 AC 231 ms
34,700 KB
testcase_43 AC 60 ms
15,292 KB
testcase_44 AC 62 ms
15,588 KB
testcase_45 AC 78 ms
18,340 KB
testcase_46 AC 70 ms
16,988 KB
testcase_47 AC 55 ms
12,960 KB
testcase_48 AC 73 ms
17,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using ull = unsigned long long;
constexpr int MOD = 998244353;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define rep2(i, l, r) for (int i = (l); i < (int)(r); i++)
#define all(v) v.begin(), v.end()

ll ans=0;
void ch(ll &a,ll b){
  a=(a+b)%MOD;
}

ll dfs(int v,vector<bool>& vst,const vector<vector<int>>& G,const vector<ll>& A){
  vst[v]=1;
  vector c(0,0ll);
  for(int i:G[v]){
    if(!vst[i]){
      c.push_back(dfs(i,vst,G,A));
    }
  }
  ll s=0;
  for(ll i:c){
    ch(ans,s*A[v]%MOD*i);
    ch(s,i);
  }
  ch(ans,s*A[v]);
  return (s*A[v]+A[v])%MOD;
}

int main() {
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int N;
  cin>>N;
  vector A(N,0ll);
  for(ll &i:A)cin>>i;
  vector G(N,vector(0,0));
  rep(i,N-1){
    int U,V;
    cin>>U>>V;
    --U,--V;
    G[U].push_back(V);
    G[V].push_back(U);
  }
  vector vst(N,false);
  dfs(0,vst,G,A);
  cout<<ans<<'\n';
}
0