結果

問題 No.812 Change of Class
ユーザー brthyyjpbrthyyjp
提出日時 2022-02-09 16:00:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,239 ms / 4,000 ms
コード長 893 bytes
コンパイル時間 414 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 102,508 KB
最終ジャッジ日時 2024-06-24 19:50:39
合計ジャッジ時間 26,902 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 269 ms
93,840 KB
testcase_01 AC 129 ms
78,848 KB
testcase_02 AC 195 ms
87,824 KB
testcase_03 AC 302 ms
97,284 KB
testcase_04 AC 274 ms
94,600 KB
testcase_05 AC 1,239 ms
97,004 KB
testcase_06 AC 953 ms
92,228 KB
testcase_07 AC 66 ms
70,784 KB
testcase_08 AC 59 ms
64,384 KB
testcase_09 AC 934 ms
101,732 KB
testcase_10 AC 1,023 ms
101,088 KB
testcase_11 AC 101 ms
97,536 KB
testcase_12 AC 591 ms
102,076 KB
testcase_13 AC 49 ms
53,888 KB
testcase_14 AC 47 ms
54,272 KB
testcase_15 AC 787 ms
92,964 KB
testcase_16 AC 131 ms
77,708 KB
testcase_17 AC 669 ms
94,240 KB
testcase_18 AC 466 ms
89,484 KB
testcase_19 AC 507 ms
92,016 KB
testcase_20 AC 1,063 ms
100,256 KB
testcase_21 AC 589 ms
88,976 KB
testcase_22 AC 237 ms
83,292 KB
testcase_23 AC 130 ms
77,680 KB
testcase_24 AC 131 ms
77,568 KB
testcase_25 AC 204 ms
82,688 KB
testcase_26 AC 892 ms
97,136 KB
testcase_27 AC 919 ms
94,196 KB
testcase_28 AC 650 ms
91,880 KB
testcase_29 AC 176 ms
78,720 KB
testcase_30 AC 653 ms
92,448 KB
testcase_31 AC 706 ms
90,708 KB
testcase_32 AC 280 ms
84,736 KB
testcase_33 AC 700 ms
96,860 KB
testcase_34 AC 126 ms
77,736 KB
testcase_35 AC 188 ms
83,328 KB
testcase_36 AC 132 ms
77,824 KB
testcase_37 AC 412 ms
85,108 KB
testcase_38 AC 84 ms
78,976 KB
testcase_39 AC 361 ms
85,540 KB
testcase_40 AC 143 ms
78,464 KB
testcase_41 AC 77 ms
76,160 KB
testcase_42 AC 751 ms
91,664 KB
testcase_43 AC 183 ms
97,408 KB
testcase_44 AC 517 ms
87,832 KB
testcase_45 AC 134 ms
77,760 KB
testcase_46 AC 162 ms
96,000 KB
testcase_47 AC 457 ms
89,388 KB
testcase_48 AC 537 ms
91,996 KB
testcase_49 AC 189 ms
79,360 KB
testcase_50 AC 85 ms
71,296 KB
testcase_51 AC 177 ms
84,608 KB
testcase_52 AC 299 ms
92,952 KB
testcase_53 AC 151 ms
78,592 KB
testcase_54 AC 147 ms
78,464 KB
testcase_55 AC 225 ms
94,820 KB
testcase_56 AC 253 ms
98,836 KB
testcase_57 AC 260 ms
99,264 KB
testcase_58 AC 172 ms
88,448 KB
testcase_59 AC 287 ms
102,508 KB
testcase_60 AC 49 ms
54,144 KB
testcase_61 AC 49 ms
53,888 KB
testcase_62 AC 47 ms
54,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import io, os
input = io.BytesIO(os.read(0,os.fstat(0).st_size)).readline

from collections import deque
import bisect

N = 32
P = [0]*N
P[0] = 1
for i in range(1, N):
    P[i] = P[i-1]*2

n, m = map(int,input().split())
g = [[] for i in range(n)]
for i in range(m):
    x, y = map(int, input().split())
    x, y = x-1, y-1
    g[x].append(y)
    g[y].append(x)
q = int(input())
Q = []
for i in range(q):
    a = int(input())
    a -= 1
    Q.append(a)

for a in Q:
    q = deque([])
    q.append(a)
    dist = [-1]*n
    dist[a] = 0
    while q:
        v = q.popleft()
        for u in g[v]:
            if dist[u] != -1:
                continue
            dist[u] = dist[v]+1
            q.append(u)
    cnt = 0
    M = 0
    for i in range(n):
        if dist[i] != -1:
            cnt += 1
            M = max(M, dist[i])
    t = bisect.bisect_left(P, M)
    print(cnt-1, t)
0