結果

問題 No.2949 Product on Tree
ユーザー tailstails
提出日時 2024-10-25 23:15:51
言語 cLay
(20240714-1)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 395 bytes
コンパイル時間 3,365 ms
コンパイル使用メモリ 175,808 KB
実行使用メモリ 26,156 KB
最終ジャッジ日時 2024-10-25 23:16:02
合計ジャッジ時間 9,774 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,112 KB
testcase_01 AC 3 ms
7,112 KB
testcase_02 AC 3 ms
8,196 KB
testcase_03 AC 61 ms
14,288 KB
testcase_04 AC 59 ms
15,528 KB
testcase_05 AC 58 ms
14,304 KB
testcase_06 AC 64 ms
14,336 KB
testcase_07 AC 67 ms
13,760 KB
testcase_08 AC 70 ms
15,712 KB
testcase_09 AC 72 ms
16,000 KB
testcase_10 AC 65 ms
16,908 KB
testcase_11 AC 71 ms
14,940 KB
testcase_12 AC 73 ms
17,160 KB
testcase_13 AC 63 ms
19,576 KB
testcase_14 AC 67 ms
18,352 KB
testcase_15 AC 73 ms
21,860 KB
testcase_16 AC 74 ms
21,344 KB
testcase_17 AC 70 ms
21,748 KB
testcase_18 AC 80 ms
20,516 KB
testcase_19 AC 80 ms
22,316 KB
testcase_20 AC 78 ms
22,532 KB
testcase_21 AC 75 ms
21,836 KB
testcase_22 AC 86 ms
21,160 KB
testcase_23 AC 68 ms
15,660 KB
testcase_24 AC 69 ms
15,372 KB
testcase_25 AC 63 ms
15,428 KB
testcase_26 AC 63 ms
15,736 KB
testcase_27 AC 66 ms
15,712 KB
testcase_28 AC 74 ms
16,552 KB
testcase_29 AC 66 ms
16,124 KB
testcase_30 AC 76 ms
17,068 KB
testcase_31 AC 67 ms
17,276 KB
testcase_32 AC 65 ms
17,532 KB
testcase_33 AC 77 ms
20,652 KB
testcase_34 AC 89 ms
23,036 KB
testcase_35 AC 89 ms
21,548 KB
testcase_36 AC 86 ms
23,920 KB
testcase_37 AC 92 ms
23,992 KB
testcase_38 AC 82 ms
22,056 KB
testcase_39 AC 79 ms
22,908 KB
testcase_40 AC 87 ms
26,156 KB
testcase_41 AC 126 ms
23,804 KB
testcase_42 AC 86 ms
25,696 KB
testcase_43 AC 18 ms
15,904 KB
testcase_44 AC 18 ms
13,312 KB
testcase_45 AC 21 ms
15,392 KB
testcase_46 AC 20 ms
16,232 KB
testcase_47 AC 16 ms
13,124 KB
testcase_48 AC 21 ms
15,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define MD 998244353

Mint a[2d5],b[],z;
graph g;

void f1(ll i,ll p){
	Mint d=1;
	rep[g.edge[i]](j,g.es[i]){
		if(j!=p){
			f1(j,i);
			d+=b[j];
		}
	}
	b[i]=a[i]*d;
}

void f3(ll i,ll p){
	Mint x=1,y;
	rep[g.edge[i]](j,g.es[i]){
		if(j!=p){
			f3(j,i);
			y+=x*b[j];
			x+=b[j];
		}
	}
	z+=y*a[i];
}

{
	ll@n;
	rd(a(n));
	int@(u,v)--[n-1];
	g.setEdge(n,n-1,u,v);
	f1(0,0);
	f3(0,0);
	wt(z);
}
0