結果

問題 No.2949 Product on Tree
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-10-26 00:50:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 211 ms / 2,000 ms
コード長 984 bytes
コンパイル時間 2,493 ms
コンパイル使用メモリ 211,172 KB
実行使用メモリ 28,736 KB
最終ジャッジ日時 2024-10-26 00:50:22
合計ジャッジ時間 13,958 ms
ジャッジサーバーID
(参考情報)
judge4 / 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 161 ms
16,320 KB
testcase_04 AC 173 ms
15,984 KB
testcase_05 AC 188 ms
16,392 KB
testcase_06 AC 179 ms
16,348 KB
testcase_07 AC 178 ms
16,240 KB
testcase_08 AC 177 ms
16,600 KB
testcase_09 AC 178 ms
16,856 KB
testcase_10 AC 174 ms
17,144 KB
testcase_11 AC 209 ms
17,832 KB
testcase_12 AC 189 ms
19,732 KB
testcase_13 AC 185 ms
20,076 KB
testcase_14 AC 183 ms
21,624 KB
testcase_15 AC 193 ms
23,384 KB
testcase_16 AC 193 ms
21,752 KB
testcase_17 AC 210 ms
22,584 KB
testcase_18 AC 205 ms
22,232 KB
testcase_19 AC 194 ms
24,248 KB
testcase_20 AC 194 ms
23,684 KB
testcase_21 AC 203 ms
23,932 KB
testcase_22 AC 201 ms
24,948 KB
testcase_23 AC 188 ms
16,476 KB
testcase_24 AC 180 ms
16,564 KB
testcase_25 AC 200 ms
16,440 KB
testcase_26 AC 190 ms
16,620 KB
testcase_27 AC 191 ms
16,692 KB
testcase_28 AC 188 ms
16,776 KB
testcase_29 AC 185 ms
16,968 KB
testcase_30 AC 190 ms
17,468 KB
testcase_31 AC 195 ms
18,432 KB
testcase_32 AC 193 ms
18,716 KB
testcase_33 AC 196 ms
21,752 KB
testcase_34 AC 200 ms
25,364 KB
testcase_35 AC 210 ms
22,868 KB
testcase_36 AC 204 ms
26,612 KB
testcase_37 AC 200 ms
26,968 KB
testcase_38 AC 197 ms
24,508 KB
testcase_39 AC 195 ms
24,924 KB
testcase_40 AC 198 ms
28,404 KB
testcase_41 AC 211 ms
26,192 KB
testcase_42 AC 187 ms
28,736 KB
testcase_43 AC 58 ms
13,784 KB
testcase_44 AC 60 ms
13,988 KB
testcase_45 AC 76 ms
17,040 KB
testcase_46 AC 69 ms
15,512 KB
testcase_47 AC 50 ms
12,048 KB
testcase_48 AC 71 ms
15,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

void fast_io() {
	ios_base::sync_with_stdio(false);
	cin.tie(nullptr);
}
#include <atcoder/modint>
using mint = atcoder::modint998244353;
vector<int> a;
vector<vector<int>> g;
vector<mint> su, sq_su;
mint ans = 0;
mint inv_2 = mint(2).inv();
void dfs(int u, int pre) {
	for (int v : g[u]) {
		if (v == pre) {
			continue;
		}
		dfs(v, u);
		su[u] += su[v];
		sq_su[u] += sq_su[v];
	}
	mint tmp = (su[u] * su[u] - sq_su[u]) * inv_2 + su[u];
	// cout << u << " " << su[u].val() << " " << sq_su[u].val() << " " <<
	// tmp.val()
	// 	 << endl;
	ans += tmp * a[u];
	su[u] = a[u] * su[u] + a[u];
	sq_su[u] = su[u] * su[u];
}
int main() {
	fast_io();
	int n;
	cin >> n;
	a.resize(n);
	for (int i = 0; i < n; i++) {
		cin >> a[i];
	}
	g.resize(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);
	}
	su.resize(n);
	sq_su.resize(n);
	dfs(0, -1);
	cout << ans.val() << endl;
}
0