結果

問題 No.872 All Tree Path
ユーザー tailstails
提出日時 2019-08-30 22:56:13
言語 Perl
(5.38.2)
結果
AC  
実行時間 1,341 ms / 3,000 ms
コード長 321 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 7,072 KB
実行使用メモリ 417,904 KB
最終ジャッジ日時 2024-11-22 02:06:03
合計ジャッジ時間 10,859 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,107 ms
139,776 KB
testcase_01 AC 1,101 ms
140,032 KB
testcase_02 AC 1,106 ms
139,648 KB
testcase_03 AC 1,341 ms
417,904 KB
testcase_04 AC 3 ms
6,820 KB
testcase_05 AC 1,223 ms
139,776 KB
testcase_06 AC 1,146 ms
139,776 KB
testcase_07 AC 1,145 ms
139,520 KB
testcase_08 AC 93 ms
18,432 KB
testcase_09 AC 94 ms
18,432 KB
testcase_10 AC 92 ms
18,304 KB
testcase_11 AC 91 ms
18,432 KB
testcase_12 AC 91 ms
18,432 KB
testcase_13 AC 3 ms
6,816 KB
testcase_14 AC 3 ms
6,816 KB
testcase_15 AC 3 ms
6,820 KB
testcase_16 AC 4 ms
6,820 KB
testcase_17 AC 3 ms
6,816 KB
testcase_18 AC 3 ms
6,816 KB
testcase_19 AC 4 ms
6,820 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.pl syntax OK

ソースコード

diff #

$n=<>;
for(<>){
	($u,$v,$w)=split;
	--$u;
	--$v;
	push@$u,$v<<8|$w;
	push@$v,$u<<8|$w;
}
sub f{
	my($x,$y)=@_;
	#$vis[$x]=1;
	vec($vis,$x,1)=1;
	for(@$x){
		my$z=$_>>8;
		my$w=$_&255;
		#if(!$vis[$z]){
		if(!vec($vis,$z,1)){
			my$y1=f($z);
			$a+=$w*$y1*($n-$y1)*2;
			$y+=$y1;
		}
	}
	$y+1;
}
#f(0);
f($n-1);
print $a;
0