結果

問題 No.812 Change of Class
ユーザー O2MTO2MT
提出日時 2020-09-01 22:45:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 605 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 31,516 KB
最終ジャッジ日時 2024-11-22 02:21:22
合計ジャッジ時間 107,364 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3,583 ms
28,288 KB
testcase_01 AC 555 ms
13,568 KB
testcase_02 AC 1,907 ms
20,224 KB
testcase_03 AC 3,999 ms
31,516 KB
testcase_04 AC 3,633 ms
29,328 KB
testcase_05 TLE -
testcase_06 AC 3,645 ms
25,280 KB
testcase_07 AC 172 ms
14,464 KB
testcase_08 AC 85 ms
12,032 KB
testcase_09 AC 3,791 ms
29,428 KB
testcase_10 AC 3,830 ms
29,680 KB
testcase_11 AC 475 ms
21,248 KB
testcase_12 AC 2,379 ms
27,936 KB
testcase_13 AC 30 ms
10,880 KB
testcase_14 AC 29 ms
10,880 KB
testcase_15 AC 2,646 ms
22,856 KB
testcase_16 AC 199 ms
11,776 KB
testcase_17 AC 2,391 ms
24,012 KB
testcase_18 AC 1,851 ms
20,552 KB
testcase_19 AC 2,130 ms
22,084 KB
testcase_20 TLE -
testcase_21 AC 1,756 ms
19,892 KB
testcase_22 AC 803 ms
15,104 KB
testcase_23 AC 155 ms
11,776 KB
testcase_24 AC 240 ms
12,032 KB
testcase_25 AC 641 ms
14,208 KB
testcase_26 AC 3,233 ms
26,292 KB
testcase_27 AC 2,858 ms
24,104 KB
testcase_28 AC 1,966 ms
21,952 KB
testcase_29 AC 491 ms
13,056 KB
testcase_30 AC 2,499 ms
23,472 KB
testcase_31 AC 2,250 ms
21,244 KB
testcase_32 AC 924 ms
16,324 KB
testcase_33 AC 2,560 ms
25,108 KB
testcase_34 AC 210 ms
12,032 KB
testcase_35 AC 617 ms
13,952 KB
testcase_36 AC 288 ms
12,032 KB
testcase_37 AC 1,514 ms
16,768 KB
testcase_38 AC 206 ms
15,360 KB
testcase_39 AC 1,520 ms
16,768 KB
testcase_40 AC 375 ms
12,928 KB
testcase_41 AC 190 ms
14,720 KB
testcase_42 AC 3,084 ms
22,656 KB
testcase_43 AC 485 ms
19,456 KB
testcase_44 AC 2,298 ms
19,328 KB
testcase_45 AC 280 ms
12,032 KB
testcase_46 AC 451 ms
19,328 KB
testcase_47 AC 2,255 ms
19,456 KB
testcase_48 AC 2,204 ms
21,376 KB
testcase_49 AC 682 ms
13,568 KB
testcase_50 AC 66 ms
11,008 KB
testcase_51 AC 572 ms
14,848 KB
testcase_52 AC 1,096 ms
20,224 KB
testcase_53 AC 467 ms
12,800 KB
testcase_54 AC 411 ms
12,672 KB
testcase_55 AC 2,589 ms
21,472 KB
testcase_56 AC 3,104 ms
23,564 KB
testcase_57 AC 3,282 ms
24,828 KB
testcase_58 AC 1,708 ms
17,816 KB
testcase_59 AC 3,667 ms
26,596 KB
testcase_60 AC 30 ms
11,008 KB
testcase_61 AC 30 ms
10,880 KB
testcase_62 AC 29 ms
11,008 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