結果

問題 No.1103 Directed Length Sum
ユーザー 双六双六
提出日時 2020-07-20 03:15:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,020 ms / 3,000 ms
コード長 1,116 bytes
コンパイル時間 793 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 317,392 KB
最終ジャッジ日時 2024-12-21 08:20:55
合計ジャッジ時間 19,360 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
54,016 KB
testcase_01 AC 51 ms
53,632 KB
testcase_02 AC 1,015 ms
284,272 KB
testcase_03 AC 703 ms
317,392 KB
testcase_04 AC 1,096 ms
189,392 KB
testcase_05 AC 2,020 ms
309,852 KB
testcase_06 AC 671 ms
154,316 KB
testcase_07 AC 201 ms
93,744 KB
testcase_08 AC 286 ms
102,240 KB
testcase_09 AC 161 ms
86,184 KB
testcase_10 AC 372 ms
111,720 KB
testcase_11 AC 1,227 ms
208,860 KB
testcase_12 AC 701 ms
153,696 KB
testcase_13 AC 368 ms
116,388 KB
testcase_14 AC 133 ms
84,176 KB
testcase_15 AC 538 ms
134,156 KB
testcase_16 AC 1,479 ms
235,368 KB
testcase_17 AC 1,530 ms
224,808 KB
testcase_18 AC 394 ms
111,412 KB
testcase_19 AC 1,223 ms
201,956 KB
testcase_20 AC 166 ms
89,592 KB
testcase_21 AC 263 ms
99,584 KB
testcase_22 AC 980 ms
177,272 KB
testcase_23 AC 631 ms
139,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys; input = sys.stdin.buffer.readline
sys.setrecursionlimit(10**7)
from collections import defaultdict
from collections import deque
con = 10 ** 9 + 7; INF = float("inf")

def getlist():
	return list(map(int, input().split()))

class Graph(object):
	def __init__(self):
		self.graph = defaultdict(list)

	def __len__(self):
		return len(self.graph)

	def add_edge(self, a, b):
		self.graph[a].append(b)

class BFS(object):
	def __init__(self, graph, s, N):
		self.g = graph.graph
		self.Q = deque(); self.Q.append(s)
		self.dist = [INF] * N; self.dist[s] = 0
		while self.Q:
			v = self.Q.popleft()
			for i in self.g[v]:
				if self.dist[i] == INF:
					self.dist[i] = self.dist[v] + 1
					self.Q.append(i)

#処理内容
def main():
	N = int(input())
	Ein = [0] * N
	G = Graph()
	for i in range(N - 1):
		a, b = getlist()
		a -= 1; b -= 1
		G.add_edge(a, b)
		Ein[b] = 1

	s = None
	for i in range(N):
		if Ein[i] == 0:
			s = i
			break

	BF = BFS(G, s, N)
	dist = BF.dist
	ans = 0
	for i in range(N):
		v = dist[i]
		ans += int((v * (v + 1)) // 2)

	print(ans % con)


if __name__ == '__main__':
	main()
0