結果

問題 No.2316 Freight Train
ユーザー navel_tosnavel_tos
提出日時 2023-05-26 21:28:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 882 ms / 2,000 ms
コード長 1,039 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 109,696 KB
最終ジャッジ日時 2024-06-07 05:32:14
合計ジャッジ時間 20,687 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 41 ms
52,096 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 776 ms
108,672 KB
testcase_04 AC 524 ms
90,880 KB
testcase_05 AC 398 ms
90,624 KB
testcase_06 AC 227 ms
77,440 KB
testcase_07 AC 681 ms
82,304 KB
testcase_08 AC 503 ms
109,056 KB
testcase_09 AC 628 ms
95,872 KB
testcase_10 AC 668 ms
91,136 KB
testcase_11 AC 583 ms
105,600 KB
testcase_12 AC 683 ms
101,888 KB
testcase_13 AC 788 ms
109,056 KB
testcase_14 AC 799 ms
109,312 KB
testcase_15 AC 817 ms
109,440 KB
testcase_16 AC 853 ms
109,312 KB
testcase_17 AC 775 ms
109,312 KB
testcase_18 AC 811 ms
109,312 KB
testcase_19 AC 882 ms
109,440 KB
testcase_20 AC 804 ms
109,312 KB
testcase_21 AC 824 ms
109,312 KB
testcase_22 AC 791 ms
109,312 KB
testcase_23 AC 686 ms
109,696 KB
testcase_24 AC 701 ms
109,440 KB
testcase_25 AC 609 ms
107,008 KB
testcase_26 AC 579 ms
107,008 KB
testcase_27 AC 522 ms
77,312 KB
testcase_28 AC 42 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yukicoder390C

#UnionFind
class UnionFind:
    def __init__(self,N): self._parent=[-1 for i in[0]*N]
    def find(self,v):  #頂点vの親を探し、経路圧縮する
        vertices=[]
        while self._parent[v]>=0: vertices.append(v);v=self._parent[v]
        for i in vertices: self._parent[i]=v
        return v
    def unite(self,x,y):  #頂点xとyを併合し、併合の有無を返す
        x,y = self.find(x),self.find(y)
        if x==y: return 0
        if self._parent[x]>self._parent[y]: x,y=y,x  #負値で管理
        self._parent[x]+=self._parent[y]; self._parent[y]=x; return 1
    def same(self,x,y):return self.find(x)==self.find(y)   #xとyは同一集合か返す
    def size(self,x):  return -self._parent[self.find(x)]  #xの集合のサイズを求める


f=lambda:list(map(int,input().split()))
N,Q=f(); P=f(); UF=UnionFind(N)
for i in range(N):
    x=P[i]
    if x==-1: continue
    x-=1
    UF.unite(i,x)
for _ in range(Q):
    a,b=f(); a-=1; b-=1
    print('Yes') if UF.same(a,b) else print('No')
0