結果

問題 No.2337 Equidistant
ユーザー koarakko5555koarakko5555
提出日時 2023-06-03 15:18:57
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 957 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 227,296 KB
最終ジャッジ日時 2024-06-09 03:36:46
合計ジャッジ時間 10,411 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
227,296 KB
testcase_01 AC 35 ms
54,344 KB
testcase_02 AC 34 ms
54,592 KB
testcase_03 AC 34 ms
54,336 KB
testcase_04 AC 34 ms
54,196 KB
testcase_05 AC 34 ms
55,784 KB
testcase_06 AC 622 ms
79,388 KB
testcase_07 AC 667 ms
79,128 KB
testcase_08 AC 626 ms
78,536 KB
testcase_09 AC 619 ms
78,856 KB
testcase_10 AC 609 ms
78,864 KB
testcase_11 TLE -
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)

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

    #sを始点にbfs
    dist_s = [-1]*N 
    dist_s[s] = 0
    q = deque([s])
    while q:
        now = q.popleft()
        for next in G[now]:
            if dist_s[next]!=-1:
                continue
            dist_s[next] = dist_s[now] + 1
            q.append(next)
        
    #tを始点にbfs
    dist_t = [-1]*N 
    dist_t[t] = 0
    q = deque([t])
    while q:
        now = q.popleft()
        for next in G[now]:
            if dist_t[next]!=-1:
                continue
            dist_t[next] = dist_t[now] + 1
            q.append(next)

    ans = 0
    for i in range(N):
        if dist_s[i] == dist_t[i]:
            ans += 1
    print(ans)
    
0