結果

問題 No.2949 Product on Tree
ユーザー AwashAmityOakAwashAmityOak
提出日時 2024-10-25 22:56:21
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 251 ms / 2,000 ms
コード長 3,009 bytes
コンパイル時間 5,776 ms
コンパイル使用メモリ 318,132 KB
実行使用メモリ 26,776 KB
最終ジャッジ日時 2024-10-25 22:56:40
合計ジャッジ時間 17,947 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 191 ms
17,308 KB
testcase_04 AC 194 ms
17,040 KB
testcase_05 AC 222 ms
17,372 KB
testcase_06 AC 208 ms
17,388 KB
testcase_07 AC 187 ms
17,048 KB
testcase_08 AC 197 ms
17,436 KB
testcase_09 AC 201 ms
17,840 KB
testcase_10 AC 198 ms
17,956 KB
testcase_11 AC 203 ms
18,460 KB
testcase_12 AC 202 ms
20,012 KB
testcase_13 AC 207 ms
20,068 KB
testcase_14 AC 225 ms
21,024 KB
testcase_15 AC 223 ms
22,548 KB
testcase_16 AC 215 ms
21,300 KB
testcase_17 AC 219 ms
21,960 KB
testcase_18 AC 222 ms
21,928 KB
testcase_19 AC 223 ms
23,224 KB
testcase_20 AC 222 ms
22,884 KB
testcase_21 AC 225 ms
23,200 KB
testcase_22 AC 228 ms
23,652 KB
testcase_23 AC 199 ms
17,544 KB
testcase_24 AC 202 ms
17,588 KB
testcase_25 AC 210 ms
17,528 KB
testcase_26 AC 204 ms
17,604 KB
testcase_27 AC 203 ms
17,604 KB
testcase_28 AC 214 ms
17,652 KB
testcase_29 AC 199 ms
17,924 KB
testcase_30 AC 206 ms
18,196 KB
testcase_31 AC 211 ms
18,948 KB
testcase_32 AC 210 ms
19,144 KB
testcase_33 AC 228 ms
21,432 KB
testcase_34 AC 220 ms
24,300 KB
testcase_35 AC 227 ms
22,380 KB
testcase_36 AC 232 ms
25,268 KB
testcase_37 AC 232 ms
25,608 KB
testcase_38 AC 251 ms
23,636 KB
testcase_39 AC 226 ms
24,032 KB
testcase_40 AC 232 ms
26,548 KB
testcase_41 AC 233 ms
24,956 KB
testcase_42 AC 229 ms
26,776 KB
testcase_43 AC 57 ms
14,300 KB
testcase_44 AC 58 ms
14,500 KB
testcase_45 AC 75 ms
17,732 KB
testcase_46 AC 65 ms
16,408 KB
testcase_47 AC 49 ms
12,756 KB
testcase_48 AC 68 ms
16,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll = long long;
using ld = long double;
using mint = modint998244353;
istream& operator>> (istream& is, mint& x) { long long _x; is >> _x; x = _x; return is; }
ostream& operator<< (ostream& os, const mint& x) { return os << x.val(); }
template<class T, class U>
ostream& operator<< (ostream& os, const pair<T, U>& x) { return os << "{" << x.first << ", " << x.second << "}"; }
#define int ll
#define OVERLOAD_REP(_1, _2, _3, name, ...) name
#define REP2(i, l, r) for (int i = (int)(l); i < (int)(r); ++i)
#define REP1(i, n) REP2(i, 0, n)
#define rep(...) OVERLOAD_REP(__VA_ARGS__, REP2, REP1)(__VA_ARGS__)
#define RREP2(i, r, l) for (int i = (int)(r)-1; i >= (int)(l); --i)
#define RREP1(i, n) RREP2(i, n, 0)
#define rrep(...) OVERLOAD_REP(__VA_ARGS__, RREP2, RREP1)(__VA_ARGS__)
#define all(x) begin(x), end(x)
#define rall(x) rbegin(x), rend(x)
#define pb push_back
#define mp make_pair
#define mt make_tuple
const int INF = 4e18;
const int MOD = 998244353;
const int MOD1 = 1e9 + 7;
template<class T> inline bool chmax(T &a, T b) { return a < b ? a = b, 1 : 0; }
template<class T> inline bool chmin(T &a, T b) { return a > b ? a = b, 1 : 0; }
template<class T> T pow(T a, T b, T m) { return b ? b&1 ? a*pow(a, b^1, m)%m : pow(a*a%m, b>>1, m)%m : 1; }
template<class T> T pow(T a, T b) { return b ? b&1 ? pow(a, b^1)*a : pow(a*a, b>>1) : 1; }
template<class... T> inline void input(T&... a) { ((cin >> a), ...); }
template<class T, class... U> inline void print(const T& a, const U&... b) { cout << a; ((cout << " " << b), ...); }
template<class T, class... U> inline void println(const T& a, const U&... b) { print(a, b...); cout << endl; }
inline void println() { cout << endl; }
template<class T> inline void print(vector<T>& A) { rep(i, A.size()) if (i) print("", A[i]); else print(A[i]); }
template<class T> inline void println(vector<T>& A) { print(A); cout << endl; }
const int di[8] = {-1, 0, 1, 0, -1, -1, 1, 1};
const int dj[8] = {0, -1, 0, 1, -1, 1, -1, 1};

signed main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    
    int N;
    input(N);
    vector<mint> A(N);
    rep(i, N) input(A[i]);
    vector<vector<int>> G(N);
    rep(i, N-1) {
    	int U, V;
    	input(U, V);
    	--U; --V;
    	G[U].pb(V);
    	G[V].pb(U);
    }
    
    vector<mint> sum(N, 1);
    auto dfs = [&](auto dfs, int i, int par) -> void {
    	for (auto j : G[i]) {
    		if (j == par) continue;
    		dfs(dfs, j, i);
    		sum[i] += sum[j];
    	}
    	sum[i] *= A[i];
    };
    dfs(dfs, 0, -1);
    
    vector<mint> f(N);
    auto rerooting = [&](auto rerooting, int i, int par, mint p_sum) -> void {
    	f[i] = sum[i] + p_sum * A[i];
    	for (auto j : G[i]) {
    		if (j == par) continue;
    		rerooting(rerooting, j, i, sum[i] - sum[j] * A[i] + p_sum * A[i]);
    	}
    };
    rerooting(rerooting, 0, -1, 0);
    
    mint ans = 0;
    rep(i, N) ans += f[i] - A[i];
    println(ans / 2);
}
0