結果

問題 No.812 Change of Class
ユーザー maspymaspy
提出日時 2020-02-29 21:14:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 739 ms / 4,000 ms
コード長 922 bytes
コンパイル時間 324 ms
コンパイル使用メモリ 82,592 KB
実行使用メモリ 122,480 KB
最終ジャッジ日時 2024-06-12 22:06:33
合計ジャッジ時間 17,771 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 247 ms
102,688 KB
testcase_01 AC 99 ms
79,288 KB
testcase_02 AC 173 ms
90,572 KB
testcase_03 AC 282 ms
113,320 KB
testcase_04 AC 248 ms
107,788 KB
testcase_05 AC 739 ms
112,264 KB
testcase_06 AC 442 ms
102,476 KB
testcase_07 AC 54 ms
69,992 KB
testcase_08 AC 44 ms
63,600 KB
testcase_09 AC 658 ms
111,148 KB
testcase_10 AC 646 ms
110,320 KB
testcase_11 AC 95 ms
102,864 KB
testcase_12 AC 424 ms
104,364 KB
testcase_13 AC 38 ms
55,212 KB
testcase_14 AC 38 ms
55,160 KB
testcase_15 AC 433 ms
97,632 KB
testcase_16 AC 98 ms
77,808 KB
testcase_17 AC 405 ms
101,352 KB
testcase_18 AC 329 ms
92,692 KB
testcase_19 AC 360 ms
95,304 KB
testcase_20 AC 576 ms
109,084 KB
testcase_21 AC 303 ms
90,944 KB
testcase_22 AC 181 ms
84,744 KB
testcase_23 AC 106 ms
77,848 KB
testcase_24 AC 96 ms
78,052 KB
testcase_25 AC 152 ms
82,760 KB
testcase_26 AC 529 ms
106,396 KB
testcase_27 AC 503 ms
102,728 KB
testcase_28 AC 363 ms
95,632 KB
testcase_29 AC 143 ms
79,736 KB
testcase_30 AC 537 ms
98,828 KB
testcase_31 AC 329 ms
94,200 KB
testcase_32 AC 204 ms
85,744 KB
testcase_33 AC 513 ms
102,616 KB
testcase_34 AC 101 ms
78,180 KB
testcase_35 AC 159 ms
83,416 KB
testcase_36 AC 104 ms
77,880 KB
testcase_37 AC 236 ms
87,420 KB
testcase_38 AC 76 ms
87,976 KB
testcase_39 AC 243 ms
87,320 KB
testcase_40 AC 109 ms
79,168 KB
testcase_41 AC 60 ms
79,308 KB
testcase_42 AC 452 ms
100,180 KB
testcase_43 AC 139 ms
93,808 KB
testcase_44 AC 324 ms
92,004 KB
testcase_45 AC 99 ms
77,880 KB
testcase_46 AC 133 ms
94,992 KB
testcase_47 AC 272 ms
91,804 KB
testcase_48 AC 338 ms
95,416 KB
testcase_49 AC 150 ms
80,528 KB
testcase_50 AC 61 ms
71,608 KB
testcase_51 AC 157 ms
84,256 KB
testcase_52 AC 216 ms
93,552 KB
testcase_53 AC 125 ms
78,688 KB
testcase_54 AC 119 ms
79,096 KB
testcase_55 AC 217 ms
104,360 KB
testcase_56 AC 242 ms
111,044 KB
testcase_57 AC 246 ms
107,168 KB
testcase_58 AC 166 ms
92,208 KB
testcase_59 AC 281 ms
122,480 KB
testcase_60 AC 39 ms
55,576 KB
testcase_61 AC 40 ms
54,244 KB
testcase_62 AC 39 ms
54,100 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(map(int, read().split()))


# %%
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