結果

問題 No.812 Change of Class
ユーザー 双六双六
提出日時 2020-08-27 18:48:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 942 ms / 4,000 ms
コード長 1,239 bytes
コンパイル時間 641 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 127,616 KB
最終ジャッジ日時 2024-11-07 23:31:48
合計ジャッジ時間 22,673 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 302 ms
103,424 KB
testcase_01 AC 117 ms
79,104 KB
testcase_02 AC 205 ms
90,240 KB
testcase_03 AC 340 ms
108,160 KB
testcase_04 AC 301 ms
101,760 KB
testcase_05 AC 942 ms
103,680 KB
testcase_06 AC 608 ms
97,792 KB
testcase_07 AC 71 ms
77,312 KB
testcase_08 AC 56 ms
66,048 KB
testcase_09 AC 773 ms
109,824 KB
testcase_10 AC 804 ms
108,288 KB
testcase_11 AC 143 ms
127,616 KB
testcase_12 AC 517 ms
109,952 KB
testcase_13 AC 45 ms
53,888 KB
testcase_14 AC 45 ms
54,144 KB
testcase_15 AC 518 ms
95,744 KB
testcase_16 AC 116 ms
77,440 KB
testcase_17 AC 517 ms
98,048 KB
testcase_18 AC 402 ms
93,184 KB
testcase_19 AC 453 ms
95,488 KB
testcase_20 AC 864 ms
109,824 KB
testcase_21 AC 379 ms
91,264 KB
testcase_22 AC 203 ms
87,936 KB
testcase_23 AC 107 ms
77,696 KB
testcase_24 AC 117 ms
78,080 KB
testcase_25 AC 181 ms
85,504 KB
testcase_26 AC 766 ms
102,656 KB
testcase_27 AC 765 ms
99,200 KB
testcase_28 AC 463 ms
96,640 KB
testcase_29 AC 159 ms
78,848 KB
testcase_30 AC 643 ms
97,408 KB
testcase_31 AC 528 ms
94,720 KB
testcase_32 AC 237 ms
87,680 KB
testcase_33 AC 718 ms
104,064 KB
testcase_34 AC 117 ms
77,568 KB
testcase_35 AC 167 ms
85,248 KB
testcase_36 AC 115 ms
77,568 KB
testcase_37 AC 314 ms
88,448 KB
testcase_38 AC 102 ms
93,696 KB
testcase_39 AC 281 ms
89,856 KB
testcase_40 AC 140 ms
78,464 KB
testcase_41 AC 90 ms
88,448 KB
testcase_42 AC 761 ms
98,048 KB
testcase_43 AC 182 ms
110,976 KB
testcase_44 AC 379 ms
94,720 KB
testcase_45 AC 118 ms
77,312 KB
testcase_46 AC 174 ms
109,440 KB
testcase_47 AC 477 ms
93,952 KB
testcase_48 AC 491 ms
95,104 KB
testcase_49 AC 161 ms
80,256 KB
testcase_50 AC 73 ms
69,504 KB
testcase_51 AC 181 ms
87,680 KB
testcase_52 AC 286 ms
94,720 KB
testcase_53 AC 142 ms
78,720 KB
testcase_54 AC 127 ms
78,208 KB
testcase_55 AC 261 ms
102,272 KB
testcase_56 AC 295 ms
109,824 KB
testcase_57 AC 313 ms
110,976 KB
testcase_58 AC 199 ms
92,288 KB
testcase_59 AC 343 ms
115,328 KB
testcase_60 AC 45 ms
54,016 KB
testcase_61 AC 45 ms
53,632 KB
testcase_62 AC 46 ms
53,504 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, M = getlist()
	G = Graph()
	for i in range(M):
		a, b = getlist()
		a -= 1; b -= 1
		G.add_edge(a, b)
		G.add_edge(b, a)

	Q = int(input())
	for _ in range(Q):
		A = int(input())
		A -= 1

		BF = BFS(G, A, N)
		cnt = 0
		MAX = 0
		for i in range(N):
			d = BF.dist[i] 
			if d != INF:
				cnt += 1
				MAX = max(MAX, d)
		cnt -= 1

		if MAX == 0:
			day = 0
		else:
			for i in range(50):
				if 2 ** i >= MAX:
					day = i
					break

		print(cnt, day)
	

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