結果

問題 No.812 Change of Class
ユーザー O2MTO2MT
提出日時 2020-09-01 22:46:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,366 ms / 4,000 ms
コード長 605 bytes
コンパイル時間 278 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 104,820 KB
最終ジャッジ日時 2024-11-20 20:05:27
合計ジャッジ時間 30,484 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 439 ms
93,468 KB
testcase_01 AC 153 ms
78,592 KB
testcase_02 AC 288 ms
87,296 KB
testcase_03 AC 498 ms
96,664 KB
testcase_04 AC 451 ms
94,216 KB
testcase_05 AC 1,366 ms
95,808 KB
testcase_06 AC 980 ms
91,996 KB
testcase_07 AC 61 ms
70,656 KB
testcase_08 AC 51 ms
64,128 KB
testcase_09 AC 1,178 ms
100,324 KB
testcase_10 AC 1,145 ms
99,984 KB
testcase_11 AC 132 ms
104,820 KB
testcase_12 AC 664 ms
101,840 KB
testcase_13 AC 43 ms
54,016 KB
testcase_14 AC 43 ms
54,272 KB
testcase_15 AC 810 ms
93,540 KB
testcase_16 AC 135 ms
77,972 KB
testcase_17 AC 713 ms
94,016 KB
testcase_18 AC 575 ms
89,856 KB
testcase_19 AC 648 ms
92,380 KB
testcase_20 AC 1,293 ms
98,876 KB
testcase_21 AC 548 ms
89,332 KB
testcase_22 AC 276 ms
85,396 KB
testcase_23 AC 135 ms
78,080 KB
testcase_24 AC 151 ms
78,464 KB
testcase_25 AC 231 ms
82,888 KB
testcase_26 AC 1,084 ms
96,936 KB
testcase_27 AC 921 ms
93,964 KB
testcase_28 AC 643 ms
91,008 KB
testcase_29 AC 189 ms
78,848 KB
testcase_30 AC 830 ms
92,448 KB
testcase_31 AC 603 ms
90,384 KB
testcase_32 AC 297 ms
85,724 KB
testcase_33 AC 685 ms
95,448 KB
testcase_34 AC 147 ms
78,336 KB
testcase_35 AC 216 ms
83,196 KB
testcase_36 AC 149 ms
78,208 KB
testcase_37 AC 411 ms
85,760 KB
testcase_38 AC 102 ms
84,756 KB
testcase_39 AC 397 ms
86,772 KB
testcase_40 AC 187 ms
79,360 KB
testcase_41 AC 92 ms
82,688 KB
testcase_42 AC 933 ms
91,628 KB
testcase_43 AC 215 ms
97,612 KB
testcase_44 AC 606 ms
87,704 KB
testcase_45 AC 145 ms
78,592 KB
testcase_46 AC 194 ms
96,328 KB
testcase_47 AC 619 ms
87,936 KB
testcase_48 AC 563 ms
91,964 KB
testcase_49 AC 218 ms
79,904 KB
testcase_50 AC 83 ms
72,320 KB
testcase_51 AC 210 ms
85,456 KB
testcase_52 AC 350 ms
94,584 KB
testcase_53 AC 178 ms
78,720 KB
testcase_54 AC 170 ms
78,336 KB
testcase_55 AC 376 ms
96,768 KB
testcase_56 AC 419 ms
98,464 KB
testcase_57 AC 440 ms
98,236 KB
testcase_58 AC 280 ms
88,960 KB
testcase_59 AC 488 ms
102,336 KB
testcase_60 AC 44 ms
53,760 KB
testcase_61 AC 43 ms
54,272 KB
testcase_62 AC 44 ms
54,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
from math import *
N,M = map(int,input().split())
l = [[]for _ in range(N+1)]

for _ in range(M):
  p,q = map(int,input().split())
  l[p].append(q)
  l[q].append(p)

Q = int(input())
for _ in range(Q):
  i = int(input())
  que = deque([i])
  check = [-1]*(N+1)
  check[i] = 0
  friends,days = 0,-1
  while que:
    num = que.popleft()
    for j in l[num]:
      if check[j] == -1:
        que.append(j)
        check[j] = check[num]+1
        friends += 1
  ans = 0
  for k in range(1,N+1):
    if check[k] >= 2:
      ans = max(ans,ceil(log2(check[k])))
  print(friends,ans)
0