結果

問題 No.812 Change of Class
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-26 02:34:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 927 ms / 4,000 ms
コード長 796 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 82,728 KB
実行使用メモリ 102,444 KB
最終ジャッジ日時 2024-09-22 21:21:17
合計ジャッジ時間 19,829 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 227 ms
92,964 KB
testcase_01 AC 94 ms
77,768 KB
testcase_02 AC 153 ms
86,028 KB
testcase_03 AC 251 ms
95,112 KB
testcase_04 AC 230 ms
93,248 KB
testcase_05 AC 927 ms
95,236 KB
testcase_06 AC 722 ms
91,048 KB
testcase_07 AC 53 ms
69,168 KB
testcase_08 AC 46 ms
64,020 KB
testcase_09 AC 773 ms
99,020 KB
testcase_10 AC 749 ms
98,420 KB
testcase_11 AC 78 ms
95,680 KB
testcase_12 AC 631 ms
100,232 KB
testcase_13 AC 42 ms
55,044 KB
testcase_14 AC 41 ms
55,540 KB
testcase_15 AC 551 ms
92,116 KB
testcase_16 AC 90 ms
77,016 KB
testcase_17 AC 529 ms
92,480 KB
testcase_18 AC 297 ms
89,592 KB
testcase_19 AC 384 ms
90,920 KB
testcase_20 AC 816 ms
98,292 KB
testcase_21 AC 315 ms
87,784 KB
testcase_22 AC 169 ms
84,180 KB
testcase_23 AC 88 ms
76,688 KB
testcase_24 AC 92 ms
76,988 KB
testcase_25 AC 143 ms
82,556 KB
testcase_26 AC 609 ms
95,340 KB
testcase_27 AC 562 ms
92,440 KB
testcase_28 AC 359 ms
90,040 KB
testcase_29 AC 118 ms
77,832 KB
testcase_30 AC 500 ms
92,172 KB
testcase_31 AC 397 ms
90,016 KB
testcase_32 AC 198 ms
84,340 KB
testcase_33 AC 468 ms
94,372 KB
testcase_34 AC 90 ms
77,176 KB
testcase_35 AC 137 ms
82,868 KB
testcase_36 AC 97 ms
77,748 KB
testcase_37 AC 246 ms
84,564 KB
testcase_38 AC 63 ms
77,008 KB
testcase_39 AC 236 ms
85,916 KB
testcase_40 AC 117 ms
77,940 KB
testcase_41 AC 59 ms
73,960 KB
testcase_42 AC 450 ms
91,092 KB
testcase_43 AC 133 ms
95,520 KB
testcase_44 AC 363 ms
87,040 KB
testcase_45 AC 97 ms
77,060 KB
testcase_46 AC 130 ms
95,080 KB
testcase_47 AC 347 ms
87,108 KB
testcase_48 AC 378 ms
90,740 KB
testcase_49 AC 139 ms
78,836 KB
testcase_50 AC 61 ms
69,216 KB
testcase_51 AC 145 ms
85,116 KB
testcase_52 AC 208 ms
90,392 KB
testcase_53 AC 114 ms
77,932 KB
testcase_54 AC 111 ms
77,380 KB
testcase_55 AC 202 ms
93,556 KB
testcase_56 AC 225 ms
98,688 KB
testcase_57 AC 233 ms
97,404 KB
testcase_58 AC 154 ms
87,188 KB
testcase_59 AC 257 ms
102,444 KB
testcase_60 AC 41 ms
54,072 KB
testcase_61 AC 41 ms
54,356 KB
testcase_62 AC 41 ms
54,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)

N, M = map(int, input().split())
edge = [[] for _ in range(N)]
for _ in range(M):
    a, b = map(int, input().split())
    a -= 1
    b -= 1
    edge[a].append(b)
    edge[b].append(a)

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

    dist = [-1] * N
    dist[a] = 0

    size = 0
    que = deque([a])
    while que:
        s = que.popleft()
        size += 1
        d = dist[s]
        for t in edge[s]:
            if dist[t] == -1:
                dist[t] = d + 1
                que.append(t)

    if d <= 1:
        print(size - 1, 0)
    else:
        d -= 1
        time = 0
        while d:
            time += 1
            d //= 2
        print(size - 1, time)
0