結果

問題 No.2316 Freight Train
ユーザー cleanttedcleantted
提出日時 2023-02-19 01:10:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 296 ms / 2,000 ms
コード長 1,279 bytes
コンパイル時間 144 ms
コンパイル使用メモリ 82,720 KB
実行使用メモリ 125,580 KB
最終ジャッジ日時 2024-09-18 09:22:10
合計ジャッジ時間 9,814 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 137 ms
91,856 KB
testcase_01 AC 136 ms
92,068 KB
testcase_02 AC 129 ms
91,840 KB
testcase_03 AC 296 ms
124,224 KB
testcase_04 AC 227 ms
106,500 KB
testcase_05 AC 211 ms
107,120 KB
testcase_06 AC 172 ms
93,432 KB
testcase_07 AC 230 ms
97,496 KB
testcase_08 AC 280 ms
124,380 KB
testcase_09 AC 273 ms
111,824 KB
testcase_10 AC 276 ms
107,144 KB
testcase_11 AC 266 ms
120,252 KB
testcase_12 AC 263 ms
116,196 KB
testcase_13 AC 285 ms
125,132 KB
testcase_14 AC 280 ms
123,800 KB
testcase_15 AC 280 ms
123,268 KB
testcase_16 AC 281 ms
124,072 KB
testcase_17 AC 276 ms
125,580 KB
testcase_18 AC 273 ms
123,780 KB
testcase_19 AC 279 ms
124,284 KB
testcase_20 AC 295 ms
123,456 KB
testcase_21 AC 296 ms
124,212 KB
testcase_22 AC 284 ms
123,932 KB
testcase_23 AC 229 ms
123,488 KB
testcase_24 AC 262 ms
122,852 KB
testcase_25 AC 248 ms
121,728 KB
testcase_26 AC 236 ms
122,028 KB
testcase_27 AC 188 ms
92,800 KB
testcase_28 AC 133 ms
91,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque, Counter
from math import gcd, log10, pi, sqrt, ceil
from bisect import bisect, bisect_left, bisect_right, insort
from typing import Iterable, TypeVar, Union, Tuple, Iterator, List
import copy
import heapq
import itertools
import math
import random
from fractions import Fraction
from functools import lru_cache, partial, cmp_to_key
import operator
input = sys.stdin.readline
sys.setrecursionlimit(10000000)
mod = 998244353
INF = 1 << 61
DIFF = 10 ** -9
DX = [1, 0, -1, 0, 1, 1, -1, -1]
DY = [0, 1, 0, -1, 1, -1, 1, -1]

def read_values(): return map(int, input().split())
def read_index(): return map(lambda x: int(x) - 1, input().split())
def read_list(): return list(read_values())
def read_lists(N): return [read_list() for _ in range(N)]


def main():
    N, Q = read_values() 
    P = read_list()

    top = [-1] * N
    def dfs(i):
        if top[i] != -1:
            return

        if P[i] == -1:
            top[i] = i
            return

        p = P[i] - 1
        dfs(p)
        top[i] = top[p]

    for i in range(N):
        if top[i] != -1:
            continue
        dfs(i)

    for _ in range(Q):
        a, b = read_index()
        print("Yes" if top[a] == top[b] else "No")


if __name__ == "__main__":
    main()
0