結果

問題 No.812 Change of Class
ユーザー convexineqconvexineq
提出日時 2021-03-23 12:23:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,087 ms / 4,000 ms
コード長 635 bytes
コンパイル時間 420 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 106,876 KB
最終ジャッジ日時 2024-05-03 23:01:14
合計ジャッジ時間 25,773 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 279 ms
92,460 KB
testcase_01 AC 117 ms
78,336 KB
testcase_02 AC 180 ms
85,160 KB
testcase_03 AC 297 ms
96,272 KB
testcase_04 AC 281 ms
93,820 KB
testcase_05 AC 1,087 ms
95,188 KB
testcase_06 AC 709 ms
92,032 KB
testcase_07 AC 61 ms
69,760 KB
testcase_08 AC 51 ms
63,232 KB
testcase_09 AC 964 ms
97,960 KB
testcase_10 AC 991 ms
98,432 KB
testcase_11 AC 135 ms
104,704 KB
testcase_12 AC 590 ms
98,752 KB
testcase_13 AC 47 ms
53,888 KB
testcase_14 AC 47 ms
53,760 KB
testcase_15 AC 664 ms
90,628 KB
testcase_16 AC 123 ms
77,568 KB
testcase_17 AC 698 ms
91,156 KB
testcase_18 AC 489 ms
87,680 KB
testcase_19 AC 586 ms
89,136 KB
testcase_20 AC 1,052 ms
97,380 KB
testcase_21 AC 502 ms
87,680 KB
testcase_22 AC 212 ms
83,840 KB
testcase_23 AC 114 ms
77,056 KB
testcase_24 AC 125 ms
77,312 KB
testcase_25 AC 196 ms
81,664 KB
testcase_26 AC 989 ms
95,336 KB
testcase_27 AC 917 ms
91,260 KB
testcase_28 AC 497 ms
89,536 KB
testcase_29 AC 158 ms
78,464 KB
testcase_30 AC 611 ms
89,872 KB
testcase_31 AC 547 ms
88,124 KB
testcase_32 AC 232 ms
84,608 KB
testcase_33 AC 800 ms
94,452 KB
testcase_34 AC 123 ms
77,696 KB
testcase_35 AC 171 ms
81,408 KB
testcase_36 AC 123 ms
77,824 KB
testcase_37 AC 368 ms
83,968 KB
testcase_38 AC 102 ms
85,632 KB
testcase_39 AC 284 ms
84,480 KB
testcase_40 AC 140 ms
78,208 KB
testcase_41 AC 94 ms
81,664 KB
testcase_42 AC 655 ms
90,960 KB
testcase_43 AC 185 ms
96,640 KB
testcase_44 AC 383 ms
86,656 KB
testcase_45 AC 123 ms
77,440 KB
testcase_46 AC 179 ms
95,616 KB
testcase_47 AC 389 ms
86,400 KB
testcase_48 AC 485 ms
89,824 KB
testcase_49 AC 167 ms
78,976 KB
testcase_50 AC 82 ms
69,376 KB
testcase_51 AC 180 ms
83,072 KB
testcase_52 AC 297 ms
92,032 KB
testcase_53 AC 149 ms
78,080 KB
testcase_54 AC 133 ms
78,080 KB
testcase_55 AC 239 ms
95,812 KB
testcase_56 AC 259 ms
99,448 KB
testcase_57 AC 277 ms
101,856 KB
testcase_58 AC 184 ms
87,168 KB
testcase_59 AC 304 ms
106,876 KB
testcase_60 AC 48 ms
53,632 KB
testcase_61 AC 48 ms
53,632 KB
testcase_62 AC 47 ms
53,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
def dfs(g,x):
    q = deque()
    q.append(x)
    dist = [-1]*n
    dist[x] = 0
    cnt = 0
    while q:
        v = q.popleft()
        for c in g[v]:
            if dist[c] == -1:
                dist[c] = dist[v] + 1
                q.append(c)
                cnt += 1
    return max(dist),cnt

n,m = map(int,input().split())
g = [[] for _ in range(n)]
for _ in range(m):
    a,b = map(int,input().split())
    g[a-1].append(b-1)
    g[b-1].append(a-1)
Q = int(input())
for _ in range(Q):
    v = int(input())-1
    res,cnt = dfs(g,v)
    res = 0 if res==0 else (res-1).bit_length()
    print(cnt,res)
0