結果

問題 No.2337 Equidistant
ユーザー ryohei22ryohei22
提出日時 2023-06-02 21:48:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 700 bytes
コンパイル時間 440 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 120,964 KB
最終ジャッジ日時 2024-06-08 22:45:17
合計ジャッジ時間 20,461 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,352 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 886 ms
102,024 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 971 ms
102,564 KB
testcase_25 WA -
testcase_26 AC 969 ms
101,848 KB
testcase_27 WA -
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

def BFS() -> list:
    visit = [False] * N

    visit[0] = True
    q = [0]

    d = 0
    dist = [-1] * N
    while q:
        new = []
        for i in q:
            dist[i] = d
            for j in e[i]:
                if not visit[j]:
                    visit[j] = True
                    new.append(j)
        q = new
        d += 1

    return dist


N, Q = map(int, input().split())
e = [[] for _ in range(N)]
for _ in range(N-1):
    A, B = map(lambda x: int(x) - 1, input().split())
    e[A].append(B)
    e[B].append(A)


dist = BFS()

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

    if (dist[s] - dist[t]) % 2:
        print(0)
    else:
        print(1)
0