結果

問題 No.812 Change of Class
ユーザー hedwig100hedwig100
提出日時 2020-04-22 14:31:41
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 3,398 ms / 4,000 ms
コード長 642 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 31,088 KB
最終ジャッジ日時 2024-10-11 07:11:15
合計ジャッジ時間 76,381 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,966 ms
28,004 KB
testcase_01 AC 322 ms
13,312 KB
testcase_02 AC 1,090 ms
19,712 KB
testcase_03 AC 2,316 ms
31,088 KB
testcase_04 AC 2,069 ms
28,160 KB
testcase_05 AC 3,398 ms
27,684 KB
testcase_06 AC 3,076 ms
24,732 KB
testcase_07 AC 70 ms
13,952 KB
testcase_08 AC 46 ms
11,520 KB
testcase_09 AC 3,049 ms
29,260 KB
testcase_10 AC 3,001 ms
29,132 KB
testcase_11 AC 186 ms
20,992 KB
testcase_12 AC 1,757 ms
27,508 KB
testcase_13 AC 31 ms
10,624 KB
testcase_14 AC 31 ms
10,496 KB
testcase_15 AC 2,114 ms
22,452 KB
testcase_16 AC 128 ms
11,520 KB
testcase_17 AC 1,910 ms
23,460 KB
testcase_18 AC 1,406 ms
20,260 KB
testcase_19 AC 1,570 ms
21,668 KB
testcase_20 AC 3,146 ms
28,956 KB
testcase_21 AC 1,364 ms
19,608 KB
testcase_22 AC 595 ms
14,848 KB
testcase_23 AC 108 ms
11,392 KB
testcase_24 AC 163 ms
11,776 KB
testcase_25 AC 461 ms
13,952 KB
testcase_26 AC 2,579 ms
25,896 KB
testcase_27 AC 2,237 ms
23,880 KB
testcase_28 AC 1,895 ms
21,472 KB
testcase_29 AC 381 ms
12,928 KB
testcase_30 AC 2,204 ms
23,304 KB
testcase_31 AC 1,859 ms
20,948 KB
testcase_32 AC 733 ms
15,744 KB
testcase_33 AC 2,067 ms
24,808 KB
testcase_34 AC 141 ms
11,776 KB
testcase_35 AC 386 ms
13,696 KB
testcase_36 AC 177 ms
11,776 KB
testcase_37 AC 1,065 ms
16,640 KB
testcase_38 AC 89 ms
14,848 KB
testcase_39 AC 1,116 ms
16,640 KB
testcase_40 AC 246 ms
12,416 KB
testcase_41 AC 79 ms
14,464 KB
testcase_42 AC 2,376 ms
22,272 KB
testcase_43 AC 318 ms
19,328 KB
testcase_44 AC 1,661 ms
19,200 KB
testcase_45 AC 179 ms
11,648 KB
testcase_46 AC 276 ms
19,072 KB
testcase_47 AC 1,691 ms
19,072 KB
testcase_48 AC 1,539 ms
21,120 KB
testcase_49 AC 464 ms
13,440 KB
testcase_50 AC 51 ms
10,880 KB
testcase_51 AC 402 ms
14,720 KB
testcase_52 AC 762 ms
19,712 KB
testcase_53 AC 286 ms
12,544 KB
testcase_54 AC 274 ms
12,160 KB
testcase_55 AC 1,432 ms
20,736 KB
testcase_56 AC 1,673 ms
23,168 KB
testcase_57 AC 1,794 ms
23,168 KB
testcase_58 AC 952 ms
17,408 KB
testcase_59 AC 2,010 ms
25,088 KB
testcase_60 AC 30 ms
10,624 KB
testcase_61 AC 30 ms
10,496 KB
testcase_62 AC 29 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from  collections import deque

n,m = map(int,input().split())
G = [[] for _ in range(n)]
for _ in range(m):
    a,b = map(int,input().split())
    a -= 1
    b -= 1
    G[a].append(b)
    G[b].append(a)

q = int(input())
for _ in range(q):
    s = int(input())
    s -= 1
    dist = [-1] * n
    dist[s] = 0
    q = deque([s])
    ret = 0
    while q:
        p = q.popleft()
        for v in G[p]:
            if dist[v] >= 0:
                continue
            ret += 1
            dist[v] = dist[p] + 1
            q.append(v)
    D = max(dist)
    day = 0
    d = 1
    while d < D:
        d *= 2
        day += 1
    print(ret,day)

0