結果

問題 No.1103 Directed Length Sum
ユーザー 双六双六
提出日時 2020-07-20 03:15:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,846 ms / 3,000 ms
コード長 1,116 bytes
コンパイル時間 632 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 317,580 KB
最終ジャッジ日時 2024-06-01 05:20:16
合計ジャッジ時間 17,548 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
53,376 KB
testcase_01 AC 47 ms
53,760 KB
testcase_02 AC 916 ms
284,056 KB
testcase_03 AC 678 ms
317,580 KB
testcase_04 AC 995 ms
189,520 KB
testcase_05 AC 1,846 ms
310,360 KB
testcase_06 AC 628 ms
154,288 KB
testcase_07 AC 190 ms
93,792 KB
testcase_08 AC 263 ms
102,512 KB
testcase_09 AC 143 ms
86,272 KB
testcase_10 AC 338 ms
112,100 KB
testcase_11 AC 1,080 ms
209,112 KB
testcase_12 AC 635 ms
154,204 KB
testcase_13 AC 347 ms
116,392 KB
testcase_14 AC 128 ms
84,352 KB
testcase_15 AC 503 ms
134,116 KB
testcase_16 AC 1,246 ms
235,388 KB
testcase_17 AC 1,287 ms
225,064 KB
testcase_18 AC 335 ms
111,972 KB
testcase_19 AC 1,090 ms
202,384 KB
testcase_20 AC 157 ms
89,944 KB
testcase_21 AC 232 ms
99,712 KB
testcase_22 AC 889 ms
177,668 KB
testcase_23 AC 566 ms
139,020 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