結果

問題 No.812 Change of Class
ユーザー ttrttr
提出日時 2020-06-21 18:14:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 935 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 11,052 KB
実行使用メモリ 32,120 KB
最終ジャッジ日時 2023-09-16 18:34:14
合計ジャッジ時間 20,207 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 TLE -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
testcase_53 -- -
testcase_54 -- -
testcase_55 -- -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
testcase_62 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
def dijkstra(s):
    inf = 10**9
    d = [inf]*(N+1)
    used = [0]*(N+1)
    h = [(0, s)]
    while h:
        temp = heapq.heappop(h)
        dist = temp[0]
        u = temp[1]
        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, 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].append(q)
    E[q].append(p)

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