結果

問題 No.812 Change of Class
ユーザー kohei2019kohei2019
提出日時 2022-04-18 23:15:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 816 ms / 4,000 ms
コード長 979 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 151,824 KB
最終ジャッジ日時 2024-06-09 15:19:42
合計ジャッジ時間 23,107 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 336 ms
103,916 KB
testcase_01 AC 127 ms
79,144 KB
testcase_02 AC 221 ms
96,364 KB
testcase_03 AC 383 ms
107,576 KB
testcase_04 AC 338 ms
104,820 KB
testcase_05 AC 802 ms
106,792 KB
testcase_06 AC 673 ms
101,564 KB
testcase_07 AC 78 ms
89,344 KB
testcase_08 AC 50 ms
71,040 KB
testcase_09 AC 802 ms
115,412 KB
testcase_10 AC 816 ms
117,768 KB
testcase_11 AC 177 ms
151,824 KB
testcase_12 AC 523 ms
126,624 KB
testcase_13 AC 39 ms
54,400 KB
testcase_14 AC 38 ms
54,400 KB
testcase_15 AC 584 ms
107,016 KB
testcase_16 AC 114 ms
77,996 KB
testcase_17 AC 521 ms
108,360 KB
testcase_18 AC 407 ms
106,112 KB
testcase_19 AC 464 ms
112,984 KB
testcase_20 AC 810 ms
113,800 KB
testcase_21 AC 379 ms
101,240 KB
testcase_22 AC 222 ms
93,272 KB
testcase_23 AC 110 ms
78,500 KB
testcase_24 AC 130 ms
78,348 KB
testcase_25 AC 191 ms
91,392 KB
testcase_26 AC 672 ms
112,148 KB
testcase_27 AC 617 ms
105,632 KB
testcase_28 AC 420 ms
102,672 KB
testcase_29 AC 170 ms
79,212 KB
testcase_30 AC 490 ms
106,116 KB
testcase_31 AC 461 ms
102,392 KB
testcase_32 AC 254 ms
91,020 KB
testcase_33 AC 531 ms
111,760 KB
testcase_34 AC 135 ms
78,464 KB
testcase_35 AC 180 ms
90,784 KB
testcase_36 AC 124 ms
78,464 KB
testcase_37 AC 296 ms
94,272 KB
testcase_38 AC 124 ms
110,464 KB
testcase_39 AC 300 ms
97,272 KB
testcase_40 AC 143 ms
78,756 KB
testcase_41 AC 112 ms
102,528 KB
testcase_42 AC 544 ms
101,564 KB
testcase_43 AC 192 ms
124,396 KB
testcase_44 AC 403 ms
96,036 KB
testcase_45 AC 117 ms
78,328 KB
testcase_46 AC 195 ms
123,352 KB
testcase_47 AC 387 ms
95,760 KB
testcase_48 AC 398 ms
103,712 KB
testcase_49 AC 169 ms
79,720 KB
testcase_50 AC 68 ms
73,344 KB
testcase_51 AC 188 ms
95,788 KB
testcase_52 AC 288 ms
118,320 KB
testcase_53 AC 136 ms
78,848 KB
testcase_54 AC 134 ms
78,492 KB
testcase_55 AC 294 ms
106,236 KB
testcase_56 AC 338 ms
110,224 KB
testcase_57 AC 330 ms
111,588 KB
testcase_58 AC 212 ms
96,744 KB
testcase_59 AC 366 ms
113,524 KB
testcase_60 AC 37 ms
54,400 KB
testcase_61 AC 36 ms
54,144 KB
testcase_62 AC 37 ms
53,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
N,M = map(int,input().split())
lsg = [[] for i in range(N)]
for i in range(M):
    p,q = map(int,input().split())
    p -= 1
    q -= 1
    lsg[p].append(q)
    lsg[q].append(p)
Q = int(input())
ans = []
inf = float('INF')
for i in range(Q):
    a = int(input())-1
    used = [False]*(N)
    d = collections.deque([a])
    cost = [inf]*(N)
    cost[a] = 0
    while d:
        n = d.popleft()
        if used[n]:
            continue
        used[n] = True
        for j in lsg[n]:
            if used[j]:
                continue
            if cost[j] > cost[n]+1:
                cost[j] = cost[n]+1
                d.append(j)
    cnt = 0
    maxn = 0
    for j in range(N):
        if cost[j] != inf:
            cnt += 1
            maxn = max(maxn,cost[j])
    if maxn == 0:
        ans.append((0,0))
    elif maxn == 1:
        ans.append((cnt-1,0))
    else:
        ans.append((cnt-1,len(bin(maxn-1))-2))
for i in range(Q):
    print(*ans[i],sep=' ')
0