結果

問題 No.2949 Product on Tree
ユーザー 沙耶花沙耶花
提出日時 2024-10-25 21:36:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 380 ms / 2,000 ms
コード長 853 bytes
コンパイル時間 4,557 ms
コンパイル使用メモリ 262,644 KB
実行使用メモリ 28,112 KB
最終ジャッジ日時 2024-10-25 21:36:56
合計ジャッジ時間 23,190 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 352 ms
15,668 KB
testcase_04 AC 361 ms
15,424 KB
testcase_05 AC 346 ms
15,624 KB
testcase_06 AC 348 ms
15,764 KB
testcase_07 AC 340 ms
15,424 KB
testcase_08 AC 365 ms
15,972 KB
testcase_09 AC 371 ms
16,232 KB
testcase_10 AC 345 ms
16,508 KB
testcase_11 AC 353 ms
17,176 KB
testcase_12 AC 355 ms
19,052 KB
testcase_13 AC 349 ms
19,400 KB
testcase_14 AC 357 ms
20,908 KB
testcase_15 AC 352 ms
22,812 KB
testcase_16 AC 349 ms
21,388 KB
testcase_17 AC 354 ms
21,812 KB
testcase_18 AC 358 ms
21,600 KB
testcase_19 AC 363 ms
23,564 KB
testcase_20 AC 376 ms
22,988 KB
testcase_21 AC 364 ms
23,328 KB
testcase_22 AC 358 ms
24,280 KB
testcase_23 AC 355 ms
15,916 KB
testcase_24 AC 356 ms
15,896 KB
testcase_25 AC 370 ms
15,952 KB
testcase_26 AC 355 ms
15,880 KB
testcase_27 AC 352 ms
15,952 KB
testcase_28 AC 371 ms
16,100 KB
testcase_29 AC 354 ms
16,184 KB
testcase_30 AC 380 ms
16,640 KB
testcase_31 AC 361 ms
17,644 KB
testcase_32 AC 366 ms
17,960 KB
testcase_33 AC 374 ms
21,012 KB
testcase_34 AC 373 ms
24,748 KB
testcase_35 AC 375 ms
22,128 KB
testcase_36 AC 372 ms
25,948 KB
testcase_37 AC 371 ms
26,380 KB
testcase_38 AC 372 ms
23,852 KB
testcase_39 AC 365 ms
24,160 KB
testcase_40 AC 378 ms
27,640 KB
testcase_41 AC 373 ms
25,336 KB
testcase_42 AC 375 ms
28,112 KB
testcase_43 AC 166 ms
13,588 KB
testcase_44 AC 170 ms
13,772 KB
testcase_45 AC 219 ms
16,204 KB
testcase_46 AC 196 ms
15,084 KB
testcase_47 AC 142 ms
12,316 KB
testcase_48 AC 203 ms
15,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 1000000000000000000LL

mint dp[200005];
mint a[200005];
mint ans = 0;

void dfs(int cv,int pv,vector<vector<int>> &E){
	mint sum = 0;
	mint s2 = 0;
	rep(i,E[cv].size()){
		int to = E[cv][i];
		if(to==pv)continue;
		dfs(to,cv,E);
		sum += dp[to];
		s2 -= dp[to]*dp[to];
	}
	s2 += sum * sum;
	s2 /= 2;
	ans += s2 * a[cv];
	ans += sum * a[cv];
	dp[cv] = sum*a[cv] + a[cv];
}

int main(){
	int n;
	cin>>n;
	rep(i,n){
		int t;
		cin>>t;
		a[i] = t;
	}
	
	vector<vector<int>> E(n);
	rep(i,n-1){
		int a,b;
		cin>>a>>b;
		a--,b--;
		E[a].push_back(b);
		E[b].push_back(a);
	}
	
	dfs(0,-1,E);
	cout<<ans.val()<<endl;
	
	return 0;
}
0