結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 227 ms
91,692 KB
testcase_01 AC 94 ms
77,836 KB
testcase_02 AC 151 ms
85,016 KB
testcase_03 AC 245 ms
96,004 KB
testcase_04 AC 227 ms
93,400 KB
testcase_05 AC 582 ms
95,192 KB
testcase_06 AC 413 ms
91,912 KB
testcase_07 AC 51 ms
70,388 KB
testcase_08 AC 43 ms
64,152 KB
testcase_09 AC 514 ms
97,336 KB
testcase_10 AC 547 ms
98,172 KB
testcase_11 AC 105 ms
104,352 KB
testcase_12 AC 338 ms
98,360 KB
testcase_13 AC 38 ms
54,832 KB
testcase_14 AC 38 ms
54,224 KB
testcase_15 AC 384 ms
90,796 KB
testcase_16 AC 94 ms
77,320 KB
testcase_17 AC 354 ms
90,912 KB
testcase_18 AC 276 ms
87,604 KB
testcase_19 AC 320 ms
88,888 KB
testcase_20 AC 562 ms
96,736 KB
testcase_21 AC 295 ms
86,932 KB
testcase_22 AC 157 ms
83,300 KB
testcase_23 AC 88 ms
76,800 KB
testcase_24 AC 97 ms
77,484 KB
testcase_25 AC 142 ms
81,752 KB
testcase_26 AC 480 ms
94,812 KB
testcase_27 AC 479 ms
91,128 KB
testcase_28 AC 307 ms
89,276 KB
testcase_29 AC 129 ms
77,868 KB
testcase_30 AC 380 ms
89,492 KB
testcase_31 AC 332 ms
88,140 KB
testcase_32 AC 186 ms
84,112 KB
testcase_33 AC 438 ms
94,884 KB
testcase_34 AC 96 ms
77,080 KB
testcase_35 AC 128 ms
81,072 KB
testcase_36 AC 92 ms
77,228 KB
testcase_37 AC 247 ms
83,328 KB
testcase_38 AC 78 ms
85,376 KB
testcase_39 AC 214 ms
83,948 KB
testcase_40 AC 109 ms
78,180 KB
testcase_41 AC 74 ms
82,100 KB
testcase_42 AC 391 ms
90,572 KB
testcase_43 AC 134 ms
96,268 KB
testcase_44 AC 264 ms
86,228 KB
testcase_45 AC 98 ms
77,092 KB
testcase_46 AC 127 ms
95,164 KB
testcase_47 AC 260 ms
85,824 KB
testcase_48 AC 288 ms
89,312 KB
testcase_49 AC 125 ms
78,396 KB
testcase_50 AC 60 ms
70,336 KB
testcase_51 AC 129 ms
82,708 KB
testcase_52 AC 186 ms
91,532 KB
testcase_53 AC 115 ms
77,944 KB
testcase_54 AC 101 ms
77,612 KB
testcase_55 AC 186 ms
95,436 KB
testcase_56 AC 211 ms
99,068 KB
testcase_57 AC 217 ms
101,608 KB
testcase_58 AC 145 ms
86,936 KB
testcase_59 AC 240 ms
106,736 KB
testcase_60 AC 39 ms
54,548 KB
testcase_61 AC 36 ms
54,940 KB
testcase_62 AC 37 ms
54,376 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