結果

問題 No.812 Change of Class
ユーザー maspymaspy
提出日時 2020-03-30 10:55:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 724 ms / 4,000 ms
コード長 906 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 81,944 KB
実行使用メモリ 122,364 KB
最終ジャッジ日時 2024-06-12 22:05:25
合計ジャッジ時間 17,516 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 244 ms
103,328 KB
testcase_01 AC 99 ms
79,536 KB
testcase_02 AC 173 ms
90,444 KB
testcase_03 AC 287 ms
113,196 KB
testcase_04 AC 246 ms
107,784 KB
testcase_05 AC 724 ms
112,264 KB
testcase_06 AC 440 ms
102,604 KB
testcase_07 AC 51 ms
69,964 KB
testcase_08 AC 44 ms
64,720 KB
testcase_09 AC 621 ms
110,636 KB
testcase_10 AC 598 ms
110,440 KB
testcase_11 AC 95 ms
102,812 KB
testcase_12 AC 397 ms
104,616 KB
testcase_13 AC 38 ms
54,720 KB
testcase_14 AC 38 ms
55,068 KB
testcase_15 AC 436 ms
97,756 KB
testcase_16 AC 98 ms
77,616 KB
testcase_17 AC 403 ms
101,204 KB
testcase_18 AC 320 ms
92,428 KB
testcase_19 AC 446 ms
95,304 KB
testcase_20 AC 591 ms
109,136 KB
testcase_21 AC 299 ms
91,028 KB
testcase_22 AC 180 ms
84,620 KB
testcase_23 AC 102 ms
78,100 KB
testcase_24 AC 97 ms
77,996 KB
testcase_25 AC 157 ms
82,584 KB
testcase_26 AC 528 ms
106,396 KB
testcase_27 AC 485 ms
102,596 KB
testcase_28 AC 357 ms
95,748 KB
testcase_29 AC 137 ms
79,596 KB
testcase_30 AC 385 ms
98,452 KB
testcase_31 AC 343 ms
94,464 KB
testcase_32 AC 208 ms
85,804 KB
testcase_33 AC 512 ms
102,624 KB
testcase_34 AC 108 ms
77,908 KB
testcase_35 AC 152 ms
83,796 KB
testcase_36 AC 105 ms
78,496 KB
testcase_37 AC 241 ms
87,476 KB
testcase_38 AC 76 ms
88,080 KB
testcase_39 AC 253 ms
87,408 KB
testcase_40 AC 118 ms
79,016 KB
testcase_41 AC 63 ms
80,188 KB
testcase_42 AC 539 ms
100,440 KB
testcase_43 AC 140 ms
93,552 KB
testcase_44 AC 353 ms
92,008 KB
testcase_45 AC 103 ms
78,104 KB
testcase_46 AC 142 ms
94,912 KB
testcase_47 AC 295 ms
91,724 KB
testcase_48 AC 365 ms
95,416 KB
testcase_49 AC 152 ms
80,776 KB
testcase_50 AC 64 ms
71,040 KB
testcase_51 AC 160 ms
84,520 KB
testcase_52 AC 236 ms
93,440 KB
testcase_53 AC 119 ms
79,080 KB
testcase_54 AC 116 ms
78,720 KB
testcase_55 AC 218 ms
104,252 KB
testcase_56 AC 244 ms
111,300 KB
testcase_57 AC 247 ms
107,168 KB
testcase_58 AC 169 ms
92,012 KB
testcase_59 AC 289 ms
122,364 KB
testcase_60 AC 38 ms
54,868 KB
testcase_61 AC 41 ms
54,664 KB
testcase_62 AC 42 ms
54,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
from collections import deque

N, M = map(int, readline().split())
PQ = [tuple(map(int, readline().split())) for _ in range(M)]
Q = int(readline())
A = tuple(int(readline()) for _ in range(Q))

G = [[] for _ in range(N + 1)]
for p, q in PQ:
    G[p].append(q)
    G[q].append(p)



def bfs(root):
    dist = [-1] * (N + 1)
    q = deque()
    q.append(root)
    dist[root] = 0
    while q:
        v = q.popleft()
        dw = dist[v] + 1
        for w in G[v]:
            if dist[w] == -1:
                dist[w] = dw
                q.append(w)
    return dist


for a in A:
    dist = bfs(a)
    max_d = max(dist)
    if max_d == 0:
        print(0, 0)
        continue
    n = (max_d - 1).bit_length()
    friend = sum(x > 0 for x in dist)
    print(friend, n)
0