結果
問題 | No.812 Change of Class |
ユーザー | 双六 |
提出日時 | 2020-08-27 18:46:57 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,242 bytes |
コンパイル時間 | 170 ms |
コンパイル使用メモリ | 82,048 KB |
実行使用メモリ | 128,000 KB |
最終ジャッジ日時 | 2024-11-07 23:29:16 |
合計ジャッジ時間 | 23,323 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 305 ms
103,296 KB |
testcase_01 | AC | 117 ms
78,592 KB |
testcase_02 | AC | 204 ms
90,112 KB |
testcase_03 | AC | 341 ms
108,160 KB |
testcase_04 | AC | 317 ms
101,760 KB |
testcase_05 | WA | - |
testcase_06 | AC | 619 ms
97,920 KB |
testcase_07 | AC | 69 ms
77,568 KB |
testcase_08 | AC | 56 ms
66,048 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 46 ms
53,760 KB |
testcase_14 | AC | 45 ms
53,504 KB |
testcase_15 | AC | 560 ms
95,744 KB |
testcase_16 | AC | 116 ms
77,440 KB |
testcase_17 | AC | 545 ms
98,176 KB |
testcase_18 | AC | 407 ms
93,056 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 714 ms
102,144 KB |
testcase_27 | AC | 663 ms
98,944 KB |
testcase_28 | WA | - |
testcase_29 | AC | 159 ms
79,232 KB |
testcase_30 | WA | - |
testcase_31 | AC | 484 ms
94,336 KB |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | AC | 114 ms
77,568 KB |
testcase_37 | AC | 304 ms
88,320 KB |
testcase_38 | WA | - |
testcase_39 | AC | 279 ms
89,600 KB |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | AC | 670 ms
98,560 KB |
testcase_43 | WA | - |
testcase_44 | AC | 380 ms
94,464 KB |
testcase_45 | AC | 118 ms
77,440 KB |
testcase_46 | WA | - |
testcase_47 | AC | 374 ms
93,696 KB |
testcase_48 | AC | 443 ms
95,360 KB |
testcase_49 | AC | 159 ms
80,256 KB |
testcase_50 | AC | 73 ms
69,632 KB |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | AC | 142 ms
78,592 KB |
testcase_54 | AC | 122 ms
77,952 KB |
testcase_55 | AC | 256 ms
101,888 KB |
testcase_56 | AC | 287 ms
109,568 KB |
testcase_57 | AC | 304 ms
110,720 KB |
testcase_58 | AC | 192 ms
92,032 KB |
testcase_59 | AC | 346 ms
115,072 KB |
testcase_60 | WA | - |
testcase_61 | AC | 45 ms
53,504 KB |
testcase_62 | WA | - |
ソースコード
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(1, 50): if 2 ** i >= MAX: day = i break print(cnt, day) if __name__ == '__main__': main()