結果

問題 No.812 Change of Class
ユーザー AEnAEn
提出日時 2022-11-20 23:38:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,080 ms / 4,000 ms
コード長 695 bytes
コンパイル時間 830 ms
コンパイル使用メモリ 82,004 KB
実行使用メモリ 104,768 KB
最終ジャッジ日時 2024-09-21 20:07:15
合計ジャッジ時間 23,979 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 277 ms
92,732 KB
testcase_01 AC 122 ms
78,384 KB
testcase_02 AC 198 ms
86,552 KB
testcase_03 AC 322 ms
96,064 KB
testcase_04 AC 293 ms
93,104 KB
testcase_05 AC 1,080 ms
94,788 KB
testcase_06 AC 841 ms
91,528 KB
testcase_07 AC 59 ms
71,120 KB
testcase_08 AC 49 ms
64,248 KB
testcase_09 AC 934 ms
99,844 KB
testcase_10 AC 916 ms
98,324 KB
testcase_11 AC 125 ms
104,768 KB
testcase_12 AC 627 ms
99,536 KB
testcase_13 AC 43 ms
53,988 KB
testcase_14 AC 43 ms
53,680 KB
testcase_15 AC 623 ms
92,520 KB
testcase_16 AC 109 ms
77,604 KB
testcase_17 AC 515 ms
93,560 KB
testcase_18 AC 400 ms
90,228 KB
testcase_19 AC 475 ms
91,480 KB
testcase_20 AC 965 ms
97,604 KB
testcase_21 AC 368 ms
88,948 KB
testcase_22 AC 206 ms
84,684 KB
testcase_23 AC 115 ms
77,704 KB
testcase_24 AC 131 ms
77,836 KB
testcase_25 AC 186 ms
82,268 KB
testcase_26 AC 910 ms
95,016 KB
testcase_27 AC 663 ms
92,800 KB
testcase_28 AC 483 ms
91,276 KB
testcase_29 AC 149 ms
78,416 KB
testcase_30 AC 648 ms
91,836 KB
testcase_31 AC 420 ms
90,172 KB
testcase_32 AC 240 ms
85,824 KB
testcase_33 AC 522 ms
94,820 KB
testcase_34 AC 117 ms
77,724 KB
testcase_35 AC 164 ms
82,056 KB
testcase_36 AC 118 ms
77,460 KB
testcase_37 AC 296 ms
85,076 KB
testcase_38 AC 88 ms
85,644 KB
testcase_39 AC 282 ms
85,976 KB
testcase_40 AC 153 ms
78,400 KB
testcase_41 AC 89 ms
82,208 KB
testcase_42 AC 678 ms
91,660 KB
testcase_43 AC 185 ms
96,584 KB
testcase_44 AC 426 ms
87,464 KB
testcase_45 AC 117 ms
77,728 KB
testcase_46 AC 164 ms
95,900 KB
testcase_47 AC 404 ms
87,836 KB
testcase_48 AC 424 ms
92,384 KB
testcase_49 AC 168 ms
78,880 KB
testcase_50 AC 75 ms
71,780 KB
testcase_51 AC 167 ms
83,376 KB
testcase_52 AC 263 ms
91,956 KB
testcase_53 AC 147 ms
78,276 KB
testcase_54 AC 133 ms
78,244 KB
testcase_55 AC 242 ms
95,752 KB
testcase_56 AC 273 ms
99,584 KB
testcase_57 AC 282 ms
100,728 KB
testcase_58 AC 185 ms
88,444 KB
testcase_59 AC 316 ms
102,860 KB
testcase_60 AC 42 ms
54,024 KB
testcase_61 AC 42 ms
53,984 KB
testcase_62 AC 41 ms
55,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

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

Q = int(input())
for i in range(Q):
    A = int(input())
    d = deque()
    dis = [-1]*N
    dis[A-1] = 0
    d.append(A-1)
    while d:
        v = d.popleft()
        for nex in G[v]:
            if dis[nex]==-1:
                dis[nex] = dis[v]+1
                d.append(nex)
    m = max(dis)
    cnt = 0
    while m>1:
        if m%2==0:
            cnt += 1
            m //= 2
        else:
            cnt += 1
            m += 1
            m //= 2
    print(N-dis.count(-1)-1,cnt)
0