結果

問題 No.812 Change of Class
ユーザー ttrttr
提出日時 2020-06-21 18:40:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,630 ms / 4,000 ms
コード長 929 bytes
コンパイル時間 162 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 173,064 KB
最終ジャッジ日時 2024-07-03 18:14:40
合計ジャッジ時間 54,147 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 350 ms
107,448 KB
testcase_01 AC 150 ms
78,800 KB
testcase_02 AC 257 ms
90,944 KB
testcase_03 AC 414 ms
115,340 KB
testcase_04 AC 357 ms
110,680 KB
testcase_05 AC 2,630 ms
143,644 KB
testcase_06 AC 2,540 ms
139,316 KB
testcase_07 AC 63 ms
79,652 KB
testcase_08 AC 48 ms
67,396 KB
testcase_09 AC 2,228 ms
137,492 KB
testcase_10 AC 2,273 ms
136,680 KB
testcase_11 AC 141 ms
128,328 KB
testcase_12 AC 1,299 ms
123,620 KB
testcase_13 AC 39 ms
54,808 KB
testcase_14 AC 38 ms
53,732 KB
testcase_15 AC 1,746 ms
121,480 KB
testcase_16 AC 270 ms
80,004 KB
testcase_17 AC 1,597 ms
119,940 KB
testcase_18 AC 1,257 ms
109,904 KB
testcase_19 AC 1,390 ms
113,792 KB
testcase_20 AC 2,331 ms
139,288 KB
testcase_21 AC 1,088 ms
107,116 KB
testcase_22 AC 635 ms
91,300 KB
testcase_23 AC 290 ms
80,020 KB
testcase_24 AC 278 ms
79,924 KB
testcase_25 AC 493 ms
87,992 KB
testcase_26 AC 2,096 ms
130,004 KB
testcase_27 AC 1,723 ms
123,580 KB
testcase_28 AC 1,306 ms
112,936 KB
testcase_29 AC 484 ms
86,064 KB
testcase_30 AC 1,611 ms
119,580 KB
testcase_31 AC 1,491 ms
115,520 KB
testcase_32 AC 681 ms
94,360 KB
testcase_33 AC 1,627 ms
122,380 KB
testcase_34 AC 240 ms
79,480 KB
testcase_35 AC 369 ms
86,448 KB
testcase_36 AC 264 ms
80,652 KB
testcase_37 AC 822 ms
96,952 KB
testcase_38 AC 105 ms
98,084 KB
testcase_39 AC 796 ms
96,852 KB
testcase_40 AC 261 ms
81,604 KB
testcase_41 AC 87 ms
91,532 KB
testcase_42 AC 1,681 ms
116,864 KB
testcase_43 AC 262 ms
94,268 KB
testcase_44 AC 1,162 ms
105,152 KB
testcase_45 AC 273 ms
80,224 KB
testcase_46 AC 251 ms
105,632 KB
testcase_47 AC 1,182 ms
105,032 KB
testcase_48 AC 1,095 ms
110,348 KB
testcase_49 AC 437 ms
86,228 KB
testcase_50 AC 129 ms
77,672 KB
testcase_51 AC 372 ms
88,712 KB
testcase_52 AC 558 ms
103,708 KB
testcase_53 AC 336 ms
82,480 KB
testcase_54 AC 316 ms
82,104 KB
testcase_55 AC 972 ms
142,288 KB
testcase_56 AC 1,135 ms
157,964 KB
testcase_57 AC 1,196 ms
161,536 KB
testcase_58 AC 630 ms
118,768 KB
testcase_59 AC 1,347 ms
173,064 KB
testcase_60 AC 37 ms
53,572 KB
testcase_61 AC 37 ms
53,480 KB
testcase_62 AC 37 ms
53,308 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
def dijkstra(s):
    inf = 10**9
    d = [inf]*N
    used = [0]*N
    h = [s]
    while h:
        temp = heapq.heappop(h)
        dist = temp//N
        u = temp%N
        if used[u] == 1:
            continue
        used[u] = 1
        d[u] = dist
        for v in E[u]:
            if used[v] == 1:
                continue
            heapq.heappush(h, (dist+1)*N+v)
    return d


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

Q = int(input())
for _ in range(Q):
    a = int(input())
    d = dijkstra(a-1)
    num = -1
    dist = 0
    for i in range(N):
        if d[i] == 10**9:
            continue
        dist = max(dist, d[i]-1)
        num += 1
    cnt = 0
    for i in range(dist+1):
        if cnt >= dist:
            day = i
            break
        cnt += 1<<i
    print(num, day)
0