結果

問題 No.812 Change of Class
ユーザー 👑 rin204rin204
提出日時 2022-07-10 16:20:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,197 ms / 4,000 ms
コード長 689 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 104,696 KB
最終ジャッジ日時 2024-06-11 05:19:40
合計ジャッジ時間 25,805 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 304 ms
93,160 KB
testcase_01 AC 144 ms
78,592 KB
testcase_02 AC 228 ms
86,884 KB
testcase_03 AC 335 ms
96,540 KB
testcase_04 AC 311 ms
93,868 KB
testcase_05 AC 1,197 ms
94,940 KB
testcase_06 AC 673 ms
92,288 KB
testcase_07 AC 60 ms
69,504 KB
testcase_08 AC 53 ms
63,104 KB
testcase_09 AC 873 ms
100,160 KB
testcase_10 AC 978 ms
98,568 KB
testcase_11 AC 131 ms
104,696 KB
testcase_12 AC 642 ms
99,456 KB
testcase_13 AC 47 ms
54,016 KB
testcase_14 AC 47 ms
53,888 KB
testcase_15 AC 684 ms
91,896 KB
testcase_16 AC 139 ms
77,708 KB
testcase_17 AC 659 ms
93,052 KB
testcase_18 AC 491 ms
90,712 KB
testcase_19 AC 597 ms
91,460 KB
testcase_20 AC 1,062 ms
98,360 KB
testcase_21 AC 471 ms
88,576 KB
testcase_22 AC 218 ms
85,376 KB
testcase_23 AC 133 ms
77,696 KB
testcase_24 AC 141 ms
77,696 KB
testcase_25 AC 208 ms
82,944 KB
testcase_26 AC 843 ms
96,900 KB
testcase_27 AC 744 ms
92,940 KB
testcase_28 AC 534 ms
90,760 KB
testcase_29 AC 179 ms
78,760 KB
testcase_30 AC 581 ms
92,068 KB
testcase_31 AC 572 ms
91,372 KB
testcase_32 AC 274 ms
86,144 KB
testcase_33 AC 750 ms
95,312 KB
testcase_34 AC 133 ms
77,616 KB
testcase_35 AC 193 ms
83,280 KB
testcase_36 AC 145 ms
78,464 KB
testcase_37 AC 310 ms
86,604 KB
testcase_38 AC 102 ms
85,632 KB
testcase_39 AC 329 ms
85,504 KB
testcase_40 AC 156 ms
78,336 KB
testcase_41 AC 93 ms
81,920 KB
testcase_42 AC 715 ms
92,316 KB
testcase_43 AC 199 ms
94,268 KB
testcase_44 AC 477 ms
87,996 KB
testcase_45 AC 146 ms
77,952 KB
testcase_46 AC 181 ms
95,872 KB
testcase_47 AC 429 ms
88,900 KB
testcase_48 AC 451 ms
92,328 KB
testcase_49 AC 186 ms
79,768 KB
testcase_50 AC 93 ms
73,472 KB
testcase_51 AC 187 ms
85,248 KB
testcase_52 AC 291 ms
92,088 KB
testcase_53 AC 170 ms
78,560 KB
testcase_54 AC 159 ms
78,464 KB
testcase_55 AC 263 ms
95,504 KB
testcase_56 AC 293 ms
99,772 KB
testcase_57 AC 303 ms
100,928 KB
testcase_58 AC 208 ms
88,192 KB
testcase_59 AC 325 ms
103,064 KB
testcase_60 AC 47 ms
53,684 KB
testcase_61 AC 46 ms
53,888 KB
testcase_62 AC 45 ms
53,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

n, m = map(int, input().split())
edges = [[] for _ in range(n)]
for _ in range(m):
    u, v = map(int, input().split())
    u -= 1
    v -= 1
    edges[u].append(v)
    edges[v].append(u)

Q = int(input())
for _ in range(Q):
    a = int(input()) - 1
    queue = deque()
    queue.append(a)
    dist = [-1] * n
    dist[a] = 0
    ans = 0
    while queue:
        pos = queue.popleft()
        for npos in edges[pos]:
            if dist[npos] != -1:
                continue
            dist[npos] = dist[pos] + 1
            queue.append(npos)
            ans += 1
    ma = max(dist)
    c = 0
    while (1 << c) < ma:
        c += 1
    print(ans, c)
    
0