結果

問題 No.812 Change of Class
ユーザー neterukunneterukun
提出日時 2019-06-14 18:57:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 976 ms / 4,000 ms
コード長 897 bytes
コンパイル時間 431 ms
コンパイル使用メモリ 82,088 KB
実行使用メモリ 192,460 KB
最終ジャッジ日時 2024-06-12 21:15:15
合計ジャッジ時間 22,472 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 331 ms
107,684 KB
testcase_01 AC 130 ms
79,704 KB
testcase_02 AC 210 ms
90,640 KB
testcase_03 AC 373 ms
116,796 KB
testcase_04 AC 330 ms
110,596 KB
testcase_05 AC 976 ms
128,912 KB
testcase_06 AC 723 ms
122,168 KB
testcase_07 AC 60 ms
70,684 KB
testcase_08 AC 46 ms
63,352 KB
testcase_09 AC 792 ms
127,896 KB
testcase_10 AC 820 ms
126,508 KB
testcase_11 AC 127 ms
101,712 KB
testcase_12 AC 503 ms
108,056 KB
testcase_13 AC 40 ms
55,288 KB
testcase_14 AC 42 ms
54,188 KB
testcase_15 AC 574 ms
106,104 KB
testcase_16 AC 116 ms
78,624 KB
testcase_17 AC 527 ms
106,252 KB
testcase_18 AC 400 ms
96,040 KB
testcase_19 AC 485 ms
100,952 KB
testcase_20 AC 890 ms
127,896 KB
testcase_21 AC 385 ms
96,424 KB
testcase_22 AC 219 ms
85,196 KB
testcase_23 AC 116 ms
78,620 KB
testcase_24 AC 116 ms
78,540 KB
testcase_25 AC 181 ms
83,332 KB
testcase_26 AC 665 ms
111,228 KB
testcase_27 AC 656 ms
108,408 KB
testcase_28 AC 449 ms
99,504 KB
testcase_29 AC 164 ms
80,640 KB
testcase_30 AC 528 ms
106,548 KB
testcase_31 AC 517 ms
101,360 KB
testcase_32 AC 258 ms
86,576 KB
testcase_33 AC 630 ms
110,232 KB
testcase_34 AC 114 ms
78,200 KB
testcase_35 AC 192 ms
82,716 KB
testcase_36 AC 124 ms
78,992 KB
testcase_37 AC 295 ms
87,900 KB
testcase_38 AC 98 ms
88,700 KB
testcase_39 AC 309 ms
88,128 KB
testcase_40 AC 140 ms
79,428 KB
testcase_41 AC 97 ms
84,584 KB
testcase_42 AC 546 ms
103,712 KB
testcase_43 AC 173 ms
97,848 KB
testcase_44 AC 371 ms
93,988 KB
testcase_45 AC 123 ms
78,940 KB
testcase_46 AC 160 ms
98,968 KB
testcase_47 AC 388 ms
93,768 KB
testcase_48 AC 381 ms
96,368 KB
testcase_49 AC 165 ms
80,880 KB
testcase_50 AC 75 ms
76,440 KB
testcase_51 AC 164 ms
84,200 KB
testcase_52 AC 239 ms
93,220 KB
testcase_53 AC 151 ms
79,824 KB
testcase_54 AC 139 ms
79,780 KB
testcase_55 AC 311 ms
136,524 KB
testcase_56 AC 364 ms
153,200 KB
testcase_57 AC 397 ms
170,616 KB
testcase_58 AC 217 ms
107,040 KB
testcase_59 AC 463 ms
192,460 KB
testcase_60 AC 41 ms
54,244 KB
testcase_61 AC 39 ms
54,592 KB
testcase_62 AC 40 ms
54,596 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
import sys
sys.setrecursionlimit(200000)


n, m = map(int, input().split())
info = [list(map(int, input().split())) for i in range(m)]
q = int(input())
a = [int(input()) for i in range(q)]

tree = [[] for i in range(n)]
for i in range(m):
    tree[info[i][0] - 1].append(info[i][1] - 1)
    tree[info[i][1] - 1].append(info[i][0] - 1)

def bfs(a):
    visited = [False]*n
    cnt = 0
    q = deque([])
    q.append([0, a])
    visited[a] = True
    while q:
        times, pos = q.popleft()
        for next_pos in tree[pos]:
            if not visited[next_pos]:
                visited[next_pos] = True
                cnt += 1
                q.append([times + 1, next_pos])
    if times == 0 or times == 1:
        day = 0
    else:
        day = (times-1).bit_length()
    return cnt, day


for i in range(q):
    ans1, ans2 = bfs(a[i] - 1)
    print(ans1, ans2)
0