結果

問題 No.812 Change of Class
ユーザー qibqib
提出日時 2023-04-05 01:40:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 890 ms / 4,000 ms
コード長 806 bytes
コンパイル時間 353 ms
コンパイル使用メモリ 82,084 KB
実行使用メモリ 104,680 KB
最終ジャッジ日時 2024-10-01 14:49:28
合計ジャッジ時間 21,850 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 283 ms
92,564 KB
testcase_01 AC 126 ms
78,688 KB
testcase_02 AC 198 ms
87,208 KB
testcase_03 AC 315 ms
95,520 KB
testcase_04 AC 285 ms
93,560 KB
testcase_05 AC 795 ms
95,088 KB
testcase_06 AC 589 ms
91,596 KB
testcase_07 AC 60 ms
72,176 KB
testcase_08 AC 55 ms
66,156 KB
testcase_09 AC 890 ms
100,028 KB
testcase_10 AC 804 ms
99,540 KB
testcase_11 AC 133 ms
104,680 KB
testcase_12 AC 543 ms
101,612 KB
testcase_13 AC 40 ms
55,436 KB
testcase_14 AC 39 ms
54,660 KB
testcase_15 AC 552 ms
92,648 KB
testcase_16 AC 117 ms
77,476 KB
testcase_17 AC 505 ms
92,720 KB
testcase_18 AC 378 ms
89,704 KB
testcase_19 AC 453 ms
92,356 KB
testcase_20 AC 856 ms
97,536 KB
testcase_21 AC 366 ms
89,236 KB
testcase_22 AC 204 ms
85,120 KB
testcase_23 AC 111 ms
77,420 KB
testcase_24 AC 125 ms
78,404 KB
testcase_25 AC 176 ms
83,020 KB
testcase_26 AC 713 ms
96,540 KB
testcase_27 AC 633 ms
94,324 KB
testcase_28 AC 396 ms
91,012 KB
testcase_29 AC 151 ms
78,692 KB
testcase_30 AC 519 ms
92,404 KB
testcase_31 AC 412 ms
91,104 KB
testcase_32 AC 229 ms
85,500 KB
testcase_33 AC 472 ms
94,904 KB
testcase_34 AC 119 ms
77,988 KB
testcase_35 AC 162 ms
82,928 KB
testcase_36 AC 116 ms
77,540 KB
testcase_37 AC 268 ms
85,308 KB
testcase_38 AC 99 ms
89,796 KB
testcase_39 AC 273 ms
86,216 KB
testcase_40 AC 140 ms
78,868 KB
testcase_41 AC 89 ms
84,996 KB
testcase_42 AC 575 ms
91,884 KB
testcase_43 AC 179 ms
97,340 KB
testcase_44 AC 375 ms
87,520 KB
testcase_45 AC 120 ms
78,412 KB
testcase_46 AC 159 ms
95,644 KB
testcase_47 AC 352 ms
87,240 KB
testcase_48 AC 356 ms
91,056 KB
testcase_49 AC 160 ms
79,344 KB
testcase_50 AC 72 ms
74,280 KB
testcase_51 AC 171 ms
85,688 KB
testcase_52 AC 258 ms
93,224 KB
testcase_53 AC 138 ms
78,692 KB
testcase_54 AC 132 ms
78,092 KB
testcase_55 AC 244 ms
96,072 KB
testcase_56 AC 274 ms
98,508 KB
testcase_57 AC 288 ms
99,500 KB
testcase_58 AC 192 ms
88,724 KB
testcase_59 AC 309 ms
101,712 KB
testcase_60 AC 38 ms
54,792 KB
testcase_61 AC 36 ms
54,676 KB
testcase_62 AC 39 ms
54,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

INF = 1 << 60

n, m = map(int, input().split())

g = [[] for _ in range(n)]
for _ in range(m):
  u, v = map(int, input().split())
  u -= 1
  v -= 1
  g[u].append(v)
  g[v].append(u)

q = int(input())
for _ in range(q):
  src = int(input())
  src -= 1

  dist = [INF for _ in range(n)]
  dist[src] = 0
  dq = deque()
  dq.append(src)
  while len(dq) > 0:
    cur = dq.popleft()
    for nxt in g[cur]:
      if dist[nxt] < INF:
        continue
      dist[nxt] = dist[cur] + 1
      dq.append(nxt)

  cnt = 0
  day = - INF
  for v in range(n):
    if v == src:
      continue

    if dist[v] < INF:
      cnt += 1
      if dist[v] >= 2:
        day = max(day, dist[v])

  if day == - INF:
    print(f"{cnt} 0")
  else:
    day = (day - 1).bit_length()
    print(f"{cnt} {day}")
0