結果

問題 No.2949 Product on Tree
ユーザー kmjpkmjp
提出日時 2024-10-25 22:53:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 196 ms / 2,000 ms
コード長 1,217 bytes
コンパイル時間 2,264 ms
コンパイル使用メモリ 204,428 KB
実行使用メモリ 24,200 KB
最終ジャッジ日時 2024-10-25 22:53:26
合計ジャッジ時間 13,127 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
8,528 KB
testcase_01 AC 3 ms
8,116 KB
testcase_02 AC 4 ms
8,900 KB
testcase_03 AC 168 ms
15,852 KB
testcase_04 AC 196 ms
15,776 KB
testcase_05 AC 169 ms
15,892 KB
testcase_06 AC 170 ms
15,948 KB
testcase_07 AC 164 ms
15,672 KB
testcase_08 AC 169 ms
15,972 KB
testcase_09 AC 168 ms
16,336 KB
testcase_10 AC 168 ms
16,524 KB
testcase_11 AC 169 ms
16,808 KB
testcase_12 AC 169 ms
18,184 KB
testcase_13 AC 170 ms
18,312 KB
testcase_14 AC 168 ms
19,408 KB
testcase_15 AC 193 ms
20,728 KB
testcase_16 AC 171 ms
19,616 KB
testcase_17 AC 178 ms
20,028 KB
testcase_18 AC 180 ms
19,912 KB
testcase_19 AC 180 ms
21,200 KB
testcase_20 AC 181 ms
20,872 KB
testcase_21 AC 186 ms
21,036 KB
testcase_22 AC 176 ms
21,636 KB
testcase_23 AC 170 ms
16,024 KB
testcase_24 AC 170 ms
16,020 KB
testcase_25 AC 176 ms
15,996 KB
testcase_26 AC 177 ms
16,044 KB
testcase_27 AC 173 ms
16,056 KB
testcase_28 AC 171 ms
16,192 KB
testcase_29 AC 172 ms
16,200 KB
testcase_30 AC 173 ms
16,596 KB
testcase_31 AC 175 ms
17,208 KB
testcase_32 AC 186 ms
17,484 KB
testcase_33 AC 176 ms
19,544 KB
testcase_34 AC 187 ms
21,804 KB
testcase_35 AC 185 ms
20,140 KB
testcase_36 AC 185 ms
22,772 KB
testcase_37 AC 191 ms
22,916 KB
testcase_38 AC 183 ms
21,216 KB
testcase_39 AC 188 ms
21,656 KB
testcase_40 AC 192 ms
23,876 KB
testcase_41 AC 185 ms
22,336 KB
testcase_42 AC 190 ms
24,200 KB
testcase_43 AC 55 ms
14,328 KB
testcase_44 AC 56 ms
14,476 KB
testcase_45 AC 71 ms
16,344 KB
testcase_46 AC 64 ms
15,428 KB
testcase_47 AC 48 ms
13,648 KB
testcase_48 AC 66 ms
15,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef signed long long ll;

#define _P(...) (void)printf(__VA_ARGS__)
#define FOR(x,to) for(x=0;x<(to);x++)
#define FORR(x,arr) for(auto& x:arr)
#define FORR2(x,y,arr) for(auto& [x,y]:arr)
#define ALL(a) (a.begin()),(a.end())
#define ZERO(a) memset(a,0,sizeof(a))
#define MINUS(a) memset(a,0xff,sizeof(a))
template<class T> bool chmax(T &a, const T &b) { if(a<b){a=b;return 1;}return 0;}
template<class T> bool chmin(T &a, const T &b) { if(a>b){a=b;return 1;}return 0;}
//-------------------------------------------------------

int N;
ll A[202020];
vector<int> E[202020];
const ll mo=998244353;
ll ret;

ll dfs(int cur,int pre) {
	ll sum=A[cur];
	FORR(e,E[cur]) if(e!=pre) {
		ll a=dfs(e,cur);
		(ret+=sum*a)%=mo;
		(sum+=a*A[cur])%=mo;
	}
	return sum;
}

void solve() {
	int i,j,k,l,r,x,y; string s;
	
	cin>>N;
	FOR(i,N) cin>>A[i];
	FOR(i,N-1) {
		cin>>x>>y;
		E[x-1].push_back(y-1);
		E[y-1].push_back(x-1);
	}
	dfs(0,0);
	cout<<ret<<endl;
}


int main(int argc,char** argv){
	string s;int i;
	if(argc==1) ios::sync_with_stdio(false), cin.tie(0);
	FOR(i,argc-1) s+=argv[i+1],s+='\n'; FOR(i,s.size()) ungetc(s[s.size()-1-i],stdin);
	cout.tie(0); solve(); return 0;
}
0