結果

問題 No.812 Change of Class
ユーザー H3PO4H3PO4
提出日時 2021-02-11 09:58:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 645 ms / 4,000 ms
コード長 652 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 109,416 KB
最終ジャッジ日時 2024-07-17 23:22:14
合計ジャッジ時間 18,419 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 244 ms
94,836 KB
testcase_01 AC 111 ms
78,600 KB
testcase_02 AC 174 ms
85,936 KB
testcase_03 AC 270 ms
99,044 KB
testcase_04 AC 242 ms
94,988 KB
testcase_05 AC 645 ms
97,812 KB
testcase_06 AC 585 ms
92,728 KB
testcase_07 AC 49 ms
70,456 KB
testcase_08 AC 42 ms
63,932 KB
testcase_09 AC 615 ms
99,180 KB
testcase_10 AC 623 ms
100,404 KB
testcase_11 AC 111 ms
104,284 KB
testcase_12 AC 382 ms
96,600 KB
testcase_13 AC 37 ms
54,544 KB
testcase_14 AC 37 ms
55,380 KB
testcase_15 AC 467 ms
91,992 KB
testcase_16 AC 106 ms
77,452 KB
testcase_17 AC 403 ms
93,952 KB
testcase_18 AC 333 ms
88,684 KB
testcase_19 AC 371 ms
90,028 KB
testcase_20 AC 615 ms
97,716 KB
testcase_21 AC 304 ms
87,560 KB
testcase_22 AC 175 ms
84,096 KB
testcase_23 AC 100 ms
77,568 KB
testcase_24 AC 120 ms
78,104 KB
testcase_25 AC 158 ms
81,628 KB
testcase_26 AC 527 ms
96,196 KB
testcase_27 AC 487 ms
93,024 KB
testcase_28 AC 339 ms
90,812 KB
testcase_29 AC 136 ms
78,688 KB
testcase_30 AC 395 ms
91,924 KB
testcase_31 AC 340 ms
88,340 KB
testcase_32 AC 190 ms
84,312 KB
testcase_33 AC 428 ms
95,936 KB
testcase_34 AC 108 ms
77,860 KB
testcase_35 AC 147 ms
82,340 KB
testcase_36 AC 111 ms
78,100 KB
testcase_37 AC 245 ms
84,368 KB
testcase_38 AC 93 ms
89,648 KB
testcase_39 AC 237 ms
84,448 KB
testcase_40 AC 125 ms
78,568 KB
testcase_41 AC 84 ms
88,096 KB
testcase_42 AC 425 ms
92,968 KB
testcase_43 AC 149 ms
90,100 KB
testcase_44 AC 319 ms
86,888 KB
testcase_45 AC 108 ms
78,052 KB
testcase_46 AC 140 ms
94,612 KB
testcase_47 AC 294 ms
86,804 KB
testcase_48 AC 319 ms
89,856 KB
testcase_49 AC 139 ms
79,268 KB
testcase_50 AC 69 ms
74,304 KB
testcase_51 AC 146 ms
84,092 KB
testcase_52 AC 209 ms
92,052 KB
testcase_53 AC 126 ms
78,448 KB
testcase_54 AC 123 ms
78,392 KB
testcase_55 AC 206 ms
97,536 KB
testcase_56 AC 229 ms
103,032 KB
testcase_57 AC 244 ms
105,096 KB
testcase_58 AC 163 ms
89,488 KB
testcase_59 AC 267 ms
109,416 KB
testcase_60 AC 37 ms
54,148 KB
testcase_61 AC 38 ms
54,924 KB
testcase_62 AC 36 ms
54,564 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

N, M = map(int, input().split())
G = [[] for _ in range(N)]
for _ in range(M):
    p, q = (int(x) - 1 for x in input().split())
    G[p].append(q)
    G[q].append(p)


def solve(a):
    dist = [-1] * N
    dist[a] = 0
    # bfs
    d = deque([a])
    num = 0
    while d:
        v = d.popleft()
        dx = dist[v] + 1
        for x in G[v]:
            if dist[x] == -1:
                num += 1
                dist[x] = dx
                d.append(x)
    m = max(dist)
    day = (m - 1).bit_length() if m else 0
    return num, day


Q = int(input())
for _ in range(Q):
    a = int(input()) - 1
    print(*solve(a))
0