結果

問題 No.2337 Equidistant
ユーザー koarakko5555koarakko5555
提出日時 2023-06-03 15:15:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
MLE  
実行時間 -
コード長 720 bytes
コンパイル時間 566 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 821,248 KB
最終ジャッジ日時 2024-06-09 03:36:08
合計ジャッジ時間 20,399 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 25 ms
10,496 KB
testcase_04 AC 25 ms
10,880 KB
testcase_05 AC 25 ms
10,752 KB
testcase_06 AC 3,202 ms
42,240 KB
testcase_07 AC 3,357 ms
42,368 KB
testcase_08 AC 3,185 ms
42,368 KB
testcase_09 AC 3,495 ms
42,624 KB
testcase_10 AC 3,175 ms
42,368 KB
testcase_11 MLE -
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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

N, Q = map(int,input().split())
G = [[] for _ in range(N)]
for _ in range(N-1):
    a, b = map(int,input().split())
    a -= 1
    b -= 1
    G[a].append(b)
    G[b].append(a)

#全部を始点にbfs
dist = [[-1]*N for _ in range(N)]

for st in range(N):
    dist[st][st] = 0
    q = deque([st])
    while q:
        now = q.popleft()
        for next in G[now]:
            if dist[st][next]!=-1:
                continue
            dist[st][next] = dist[st][now] + 1
            q.append(next)

for _ in range(Q):
    s, t = map(int, input().split())
    s -= 1
    t -= 1

    ans = 0
    for i in range(N):
        if dist[s][i] == dist[t][i]:
            ans += 1
    print(ans)
    
0