結果

問題 No.2949 Product on Tree
ユーザー KudeKude
提出日時 2024-10-25 21:45:28
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 200 ms / 2,000 ms
コード長 1,350 bytes
コンパイル時間 3,640 ms
コンパイル使用メモリ 279,960 KB
実行使用メモリ 20,888 KB
最終ジャッジ日時 2024-10-25 21:45:46
合計ジャッジ時間 14,272 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 160 ms
14,616 KB
testcase_04 AC 157 ms
14,344 KB
testcase_05 AC 166 ms
14,768 KB
testcase_06 AC 167 ms
14,816 KB
testcase_07 AC 163 ms
14,492 KB
testcase_08 AC 159 ms
14,848 KB
testcase_09 AC 182 ms
15,068 KB
testcase_10 AC 169 ms
15,160 KB
testcase_11 AC 165 ms
15,512 KB
testcase_12 AC 166 ms
16,308 KB
testcase_13 AC 176 ms
16,652 KB
testcase_14 AC 172 ms
17,332 KB
testcase_15 AC 179 ms
18,132 KB
testcase_16 AC 191 ms
17,408 KB
testcase_17 AC 178 ms
17,748 KB
testcase_18 AC 177 ms
17,620 KB
testcase_19 AC 183 ms
18,620 KB
testcase_20 AC 179 ms
18,472 KB
testcase_21 AC 183 ms
18,672 KB
testcase_22 AC 171 ms
18,724 KB
testcase_23 AC 177 ms
14,868 KB
testcase_24 AC 170 ms
15,040 KB
testcase_25 AC 168 ms
15,060 KB
testcase_26 AC 168 ms
14,968 KB
testcase_27 AC 165 ms
15,104 KB
testcase_28 AC 174 ms
15,044 KB
testcase_29 AC 169 ms
15,220 KB
testcase_30 AC 176 ms
15,320 KB
testcase_31 AC 171 ms
15,900 KB
testcase_32 AC 172 ms
16,056 KB
testcase_33 AC 176 ms
17,532 KB
testcase_34 AC 181 ms
19,400 KB
testcase_35 AC 183 ms
18,192 KB
testcase_36 AC 194 ms
19,988 KB
testcase_37 AC 200 ms
20,056 KB
testcase_38 AC 181 ms
18,948 KB
testcase_39 AC 187 ms
19,092 KB
testcase_40 AC 188 ms
20,760 KB
testcase_41 AC 192 ms
19,636 KB
testcase_42 AC 191 ms
20,888 KB
testcase_43 AC 59 ms
12,504 KB
testcase_44 AC 57 ms
12,712 KB
testcase_45 AC 73 ms
15,424 KB
testcase_46 AC 66 ms
13,972 KB
testcase_47 AC 49 ms
11,280 KB
testcase_48 AC 67 ms
14,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
namespace {
#pragma GCC diagnostic ignored "-Wunused-function"
#include<atcoder/all>
#pragma GCC diagnostic warning "-Wunused-function"
using namespace std;
using namespace atcoder;
#define rep(i,n) for(int i = 0; i < (int)(n); i++)
#define rrep(i,n) for(int i = (int)(n) - 1; i >= 0; i--)
#define all(x) begin(x), end(x)
#define rall(x) rbegin(x), rend(x)
template<class T> bool chmax(T& a, const T& b) { if (a < b) { a = b; return true; } else return false; }
template<class T> bool chmin(T& a, const T& b) { if (b < a) { a = b; return true; } else return false; }
using ll = long long;
using P = pair<int,int>;
using VI = vector<int>;
using VVI = vector<VI>;
using VL = vector<ll>;
using VVL = vector<VL>;
using mint = modint998244353;

} int main() {
  ios::sync_with_stdio(false);
  cin.tie(0);
  int n;
  cin >> n;
  vector<mint> a(n);
  rep(i, n) {
    int x;
    cin >> x;
    a[i] = x;
  }
  VVI to(n);
  rep(_, n - 1) {
    int u, v;
    cin >> u >> v;
    u--, v--;
    to[u].emplace_back(v);
    to[v].emplace_back(u);
  }
  mint ans;
  auto dfs = [&](auto&& self, int u, int p) -> mint {
    mint sm;
    for (int v : to[u]) if (v != p) {
      mint r = self(self, v, u);
      ans += r * (a[u] + a[u] * sm);
      sm += r;
    }
    return sm * a[u] + a[u];
  };
  dfs(dfs, 0, -1);
  cout << ans.val() << '\n';
}
0