結果

問題 No.2316 Freight Train
ユーザー flygonflygon
提出日時 2023-05-26 21:25:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 500 ms / 2,000 ms
コード長 1,260 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 82,072 KB
実行使用メモリ 106,880 KB
最終ジャッジ日時 2024-06-07 05:17:55
合計ジャッジ時間 12,698 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,784 KB
testcase_01 AC 42 ms
54,784 KB
testcase_02 AC 41 ms
54,912 KB
testcase_03 AC 466 ms
106,368 KB
testcase_04 AC 358 ms
90,752 KB
testcase_05 AC 333 ms
90,808 KB
testcase_06 AC 183 ms
78,592 KB
testcase_07 AC 326 ms
82,048 KB
testcase_08 AC 431 ms
106,368 KB
testcase_09 AC 392 ms
95,516 KB
testcase_10 AC 393 ms
90,880 KB
testcase_11 AC 430 ms
103,632 KB
testcase_12 AC 434 ms
100,420 KB
testcase_13 AC 482 ms
106,624 KB
testcase_14 AC 478 ms
106,368 KB
testcase_15 AC 470 ms
106,484 KB
testcase_16 AC 466 ms
106,880 KB
testcase_17 AC 481 ms
106,496 KB
testcase_18 AC 480 ms
106,496 KB
testcase_19 AC 478 ms
106,624 KB
testcase_20 AC 500 ms
106,496 KB
testcase_21 AC 470 ms
106,880 KB
testcase_22 AC 465 ms
106,496 KB
testcase_23 AC 161 ms
106,368 KB
testcase_24 AC 182 ms
106,492 KB
testcase_25 AC 167 ms
105,216 KB
testcase_26 AC 151 ms
105,332 KB
testcase_27 AC 111 ms
76,544 KB
testcase_28 AC 41 ms
54,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd
from collections import defaultdict


class UnionFind:
    def __init__(self, n):
        self.n = n
        self.p = [-1] * (n+1)

    def find(self, x):
        if self.p[x] < 0:
            return x
        else:
            self.p[x] = self.find(self.p[x])
            return self.p[x]

    def union(self, x, y):
        x = self.find(x)
        y = self.find(y)
        if x == y:
            return
        if self.p[x] > self.p[y]:
            x, y = y, x
        self.p[x] += self.p[y]
        self.p[y] = x

    def same(self, a, b):
        return self.find(a) == self.find(b)

    def group(self):
        d = defaultdict(list)
        for i in range(1, self.n+1):
            par = self.find(i)
            d[par].append(i)
        return d

n,q = map(int,input().split())

uf = UnionFind(n)
p = list(map(int,input().split()))
for i in range(n):
    if p[i] == -1: continue
    uf.union(i+1, p[i])

for i in range(q):
    a,b = map(int,input().split())
    if uf.same(a,b):
        print('Yes')
    else:
        print('No')
0