結果

問題 No.2638 Initial fare
ユーザー ああいいああいい
提出日時 2024-02-23 22:39:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 643 ms / 2,000 ms
コード長 680 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 154,720 KB
最終ジャッジ日時 2024-09-29 07:44:36
合計ジャッジ時間 12,352 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,160 KB
testcase_01 AC 37 ms
52,464 KB
testcase_02 AC 37 ms
53,860 KB
testcase_03 AC 38 ms
53,324 KB
testcase_04 AC 546 ms
115,440 KB
testcase_05 AC 597 ms
117,364 KB
testcase_06 AC 38 ms
52,728 KB
testcase_07 AC 581 ms
134,320 KB
testcase_08 AC 358 ms
139,052 KB
testcase_09 AC 511 ms
154,720 KB
testcase_10 AC 406 ms
154,364 KB
testcase_11 AC 38 ms
52,352 KB
testcase_12 AC 569 ms
130,520 KB
testcase_13 AC 388 ms
143,172 KB
testcase_14 AC 546 ms
153,444 KB
testcase_15 AC 453 ms
148,000 KB
testcase_16 AC 40 ms
53,440 KB
testcase_17 AC 538 ms
130,324 KB
testcase_18 AC 487 ms
134,344 KB
testcase_19 AC 573 ms
128,996 KB
testcase_20 AC 563 ms
128,700 KB
testcase_21 AC 602 ms
126,576 KB
testcase_22 AC 37 ms
52,616 KB
testcase_23 AC 593 ms
127,376 KB
testcase_24 AC 627 ms
128,780 KB
testcase_25 AC 38 ms
54,148 KB
testcase_26 AC 614 ms
125,488 KB
testcase_27 AC 643 ms
129,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

G = [[] for _ in range(N)]
for _ in range(N- 1):
	u,v = map(int,input().split())
	u -= 1
	v -= 1
	G[u].append(v)
	G[v].append(u)
	
dp = [[0] * 2 for _ in range(N)]
stack = [(0,-1),(~0,-1)]
ans = 0
while stack:
	now,p = stack.pop()
	if now < 0:
		now = ~now
		for v in G[now]:
			if v != p:
				stack.append((v,now))
				stack.append((~v,now))
	else:
		t1 = 0
		tt = 0
		t2 = 0
		for v in G[now]:
			if v != p:
				tt += 1
				dp[now][0] += 1
				dp[now][1] += dp[v][0]
				t1 += dp[v][0]
				t2 += dp[v][1]
				
				ans += 1 + dp[v][0] + dp[v][1]
		tmp = 0
		for v in G[now]:
			if v != p:
				tmp += (t1 - dp[v][0])
		ans += tmp + (tt - 1) * tt // 2
print(ans)
0