結果

問題 No.812 Change of Class
ユーザー terasaterasa
提出日時 2022-06-02 20:39:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 709 ms / 4,000 ms
コード長 1,378 bytes
コンパイル時間 224 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 105,856 KB
最終ジャッジ日時 2024-09-21 02:09:08
合計ジャッジ時間 18,080 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 238 ms
93,952 KB
testcase_01 AC 106 ms
78,520 KB
testcase_02 AC 172 ms
86,896 KB
testcase_03 AC 264 ms
97,024 KB
testcase_04 AC 248 ms
93,812 KB
testcase_05 AC 709 ms
95,744 KB
testcase_06 AC 553 ms
91,964 KB
testcase_07 AC 55 ms
69,888 KB
testcase_08 AC 53 ms
63,744 KB
testcase_09 AC 627 ms
99,712 KB
testcase_10 AC 610 ms
99,328 KB
testcase_11 AC 99 ms
105,856 KB
testcase_12 AC 345 ms
99,296 KB
testcase_13 AC 44 ms
54,656 KB
testcase_14 AC 44 ms
55,168 KB
testcase_15 AC 450 ms
92,416 KB
testcase_16 AC 102 ms
77,696 KB
testcase_17 AC 390 ms
92,928 KB
testcase_18 AC 293 ms
90,752 KB
testcase_19 AC 361 ms
91,740 KB
testcase_20 AC 630 ms
98,688 KB
testcase_21 AC 305 ms
89,064 KB
testcase_22 AC 184 ms
82,688 KB
testcase_23 AC 97 ms
77,440 KB
testcase_24 AC 102 ms
78,164 KB
testcase_25 AC 159 ms
82,640 KB
testcase_26 AC 521 ms
95,604 KB
testcase_27 AC 488 ms
93,432 KB
testcase_28 AC 333 ms
90,240 KB
testcase_29 AC 130 ms
78,332 KB
testcase_30 AC 429 ms
91,520 KB
testcase_31 AC 366 ms
89,984 KB
testcase_32 AC 189 ms
84,056 KB
testcase_33 AC 397 ms
95,232 KB
testcase_34 AC 102 ms
77,832 KB
testcase_35 AC 149 ms
83,216 KB
testcase_36 AC 108 ms
78,216 KB
testcase_37 AC 254 ms
85,632 KB
testcase_38 AC 71 ms
78,848 KB
testcase_39 AC 242 ms
86,400 KB
testcase_40 AC 130 ms
78,592 KB
testcase_41 AC 63 ms
75,520 KB
testcase_42 AC 429 ms
91,740 KB
testcase_43 AC 134 ms
94,848 KB
testcase_44 AC 338 ms
87,124 KB
testcase_45 AC 112 ms
78,208 KB
testcase_46 AC 139 ms
95,028 KB
testcase_47 AC 333 ms
86,912 KB
testcase_48 AC 342 ms
90,496 KB
testcase_49 AC 150 ms
79,024 KB
testcase_50 AC 67 ms
69,888 KB
testcase_51 AC 143 ms
85,640 KB
testcase_52 AC 210 ms
96,464 KB
testcase_53 AC 126 ms
78,276 KB
testcase_54 AC 123 ms
78,372 KB
testcase_55 AC 233 ms
94,720 KB
testcase_56 AC 254 ms
97,920 KB
testcase_57 AC 248 ms
96,896 KB
testcase_58 AC 170 ms
88,576 KB
testcase_59 AC 273 ms
103,808 KB
testcase_60 AC 43 ms
54,784 KB
testcase_61 AC 45 ms
55,040 KB
testcase_62 AC 43 ms
54,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import pypyjit
import itertools
import heapq
import math
from collections import deque, defaultdict
import bisect

input = sys.stdin.readline
sys.setrecursionlimit(10 ** 6)
pypyjit.set_param('max_unroll_recursion=-1')


def index_lt(a, x):
    'return largest index s.t. A[i] < x or -1 if it does not exist'
    return bisect.bisect_left(a, x) - 1


def index_le(a, x):
    'return largest index s.t. A[i] <= x or -1 if it does not exist'
    return bisect.bisect_right(a, x) - 1


def index_gt(a, x):
    'return smallest index s.t. A[i] > x or len(a) if it does not exist'
    return bisect.bisect_right(a, x)


def index_ge(a, x):
    'return smallest index s.t. A[i] >= x or len(a) if it does not exist'
    return bisect.bisect_left(a, x)


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

Q = int(input())
for _ in range(Q):
    s = int(input())
    s -= 1

    INF = 1 << 30
    C = [INF] * N
    C[s] = 0
    dq = deque([s])
    cnt = 0
    depth = 0
    while len(dq) > 0:
        v = dq.popleft()
        cnt += 1
        depth = max(depth, C[v])
        for d in E[v]:
            if C[d] > C[v] + 1:
                C[d] = C[v] + 1
                dq.append(d)
    print(cnt - 1, math.ceil(math.log2(depth)) if cnt > 2 else 0)
0