結果

問題 No.2638 Initial fare
ユーザー ID 21712ID 21712
提出日時 2024-11-11 15:56:14
言語 Go
(1.23.4)
結果
AC  
実行時間 342 ms / 2,000 ms
コード長 559 bytes
コンパイル時間 13,764 ms
コンパイル使用メモリ 224,448 KB
実行使用メモリ 64,768 KB
最終ジャッジ日時 2024-11-11 15:56:35
合計ジャッジ時間 19,125 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 281 ms
15,232 KB
testcase_05 AC 279 ms
16,128 KB
testcase_06 AC 1 ms
5,248 KB
testcase_07 AC 255 ms
15,360 KB
testcase_08 AC 209 ms
17,792 KB
testcase_09 AC 234 ms
18,304 KB
testcase_10 AC 223 ms
18,304 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 256 ms
15,616 KB
testcase_13 AC 200 ms
14,976 KB
testcase_14 AC 231 ms
17,152 KB
testcase_15 AC 239 ms
16,384 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 242 ms
16,384 KB
testcase_18 AC 221 ms
16,000 KB
testcase_19 AC 263 ms
20,096 KB
testcase_20 AC 249 ms
17,920 KB
testcase_21 AC 295 ms
22,912 KB
testcase_22 AC 1 ms
5,248 KB
testcase_23 AC 336 ms
64,768 KB
testcase_24 AC 329 ms
45,696 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 342 ms
41,728 KB
testcase_27 AC 325 ms
46,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import . "fmt"
import . "os"
import bf "bufio"

func main() {
	rd:=bf.NewReader(Stdin)
	var n int
	Fscan(rd,&n)
	tree:=make([][]int,n+1)
	for e:=0;e<n-1;e++ {
		var u,v int
		Fscan(rd,&u,&v)
		tree[u]=append(tree[u],v)
		tree[v]=append(tree[v],u)
	}
	visited:=make([]bool,n+1)
	var ans int
	var dfs func(t int) (a,b,c int)
	dfs = func(t int) (a,b,c int){
		visited[t]=true
		a=1
		for _,k:=range tree[t] {
			if visited[k] {
				continue
			}
			x,y,z:=dfs(k)
			ans+=(a+b+c)*x+(a+b)*y+a*z
			b+=x
			c+=y
		}
		return
	}
	dfs(1)
	Println(ans)
}
0