結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
91,648 KB
testcase_01 AC 128 ms
91,264 KB
testcase_02 AC 130 ms
91,264 KB
testcase_03 AC 260 ms
123,008 KB
testcase_04 AC 246 ms
106,368 KB
testcase_05 AC 213 ms
105,984 KB
testcase_06 AC 182 ms
92,416 KB
testcase_07 AC 241 ms
96,896 KB
testcase_08 AC 250 ms
122,752 KB
testcase_09 AC 238 ms
111,104 KB
testcase_10 AC 242 ms
106,112 KB
testcase_11 AC 253 ms
119,424 KB
testcase_12 AC 273 ms
115,328 KB
testcase_13 AC 275 ms
122,880 KB
testcase_14 AC 282 ms
123,136 KB
testcase_15 AC 297 ms
122,880 KB
testcase_16 AC 275 ms
122,880 KB
testcase_17 AC 263 ms
122,952 KB
testcase_18 AC 281 ms
123,136 KB
testcase_19 AC 281 ms
122,880 KB
testcase_20 AC 290 ms
122,752 KB
testcase_21 AC 286 ms
122,752 KB
testcase_22 AC 272 ms
122,840 KB
testcase_23 AC 284 ms
122,880 KB
testcase_24 AC 250 ms
123,264 KB
testcase_25 AC 249 ms
121,700 KB
testcase_26 AC 243 ms
121,472 KB
testcase_27 AC 198 ms
92,692 KB
testcase_28 AC 131 ms
91,856 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
    for i, p in enumerate(P):
        if p == -1:
            top[i] = i
        else:
            top[i] = p - 1

    for _ in range(N.bit_length() + 1):
        for i in range(N):
            top[i] = top[top[i]]

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


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