結果

問題 No.2316 Freight Train
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-07-24 03:28:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 552 ms / 2,000 ms
コード長 1,616 bytes
コンパイル時間 376 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 106,780 KB
最終ジャッジ日時 2024-09-25 06:16:40
合計ジャッジ時間 14,746 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
56,108 KB
testcase_01 AC 46 ms
57,252 KB
testcase_02 AC 45 ms
56,892 KB
testcase_03 AC 552 ms
106,780 KB
testcase_04 AC 396 ms
92,320 KB
testcase_05 AC 380 ms
91,828 KB
testcase_06 AC 206 ms
78,720 KB
testcase_07 AC 372 ms
81,988 KB
testcase_08 AC 534 ms
102,268 KB
testcase_09 AC 444 ms
96,048 KB
testcase_10 AC 424 ms
91,844 KB
testcase_11 AC 465 ms
102,888 KB
testcase_12 AC 488 ms
100,688 KB
testcase_13 AC 534 ms
101,592 KB
testcase_14 AC 516 ms
101,584 KB
testcase_15 AC 508 ms
101,420 KB
testcase_16 AC 518 ms
102,088 KB
testcase_17 AC 522 ms
101,444 KB
testcase_18 AC 526 ms
101,840 KB
testcase_19 AC 526 ms
101,564 KB
testcase_20 AC 515 ms
101,548 KB
testcase_21 AC 521 ms
101,452 KB
testcase_22 AC 526 ms
101,584 KB
testcase_23 AC 172 ms
100,316 KB
testcase_24 AC 196 ms
100,056 KB
testcase_25 AC 173 ms
105,876 KB
testcase_26 AC 158 ms
105,676 KB
testcase_27 AC 116 ms
76,688 KB
testcase_28 AC 45 ms
56,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
sys.setrecursionlimit(3*10**5)
input = sys.stdin.readline

class DSU:
    def __init__(self, n):
        self._n = n
        self.parent_or_size = [-1] * n

    def merge(self, a, b):
        assert 0 <= a < self._n
        assert 0 <= b < self._n
        x, y = self.leader(a), self.leader(b)
        if x == y: return x
        if -self.parent_or_size[x] < -self.parent_or_size[y]: x, y = y, x
        self.parent_or_size[x] += self.parent_or_size[y]
        self.parent_or_size[y] = x
        return x

    def same(self, a, b):
        assert 0 <= a < self._n
        assert 0 <= b < self._n
        return self.leader(a) == self.leader(b)

    def leader(self, a):
        assert 0 <= a < self._n
        if self.parent_or_size[a] < 0: return a
        self.parent_or_size[a] = self.leader(self.parent_or_size[a])
        return self.parent_or_size[a]

    def size(self, a):
        assert 0 <= a < self._n
        return -self.parent_or_size[self.leader(a)]

    def groups(self):
        leader_buf = [self.leader(i) for i in range(self._n)]
        result = [[] for _ in range(self._n)]
        for i in range(self._n): result[leader_buf[i]].append(i)
        return [r for r in result if r != []]

N,Q = map(int,input().split())
P = list(map(int,input().split()))
D = DSU(N)
for i,p in enumerate(P):
    if p==-1:
        continue
    D.merge(i,p-1)
for _ in range(Q):
    a,b = map(int,input().split())
    a -= 1
    b -= 1
    if D.same(a,b):
        print('Yes')
    else:
        print('No')
0