結果

問題 No.2316 Freight Train
ユーザー miho-4miho-4
提出日時 2023-05-26 21:33:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 676 ms / 2,000 ms
コード長 688 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 107,596 KB
最終ジャッジ日時 2024-06-07 05:47:08
合計ジャッジ時間 16,051 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,968 KB
testcase_01 AC 36 ms
52,480 KB
testcase_02 AC 36 ms
52,736 KB
testcase_03 AC 668 ms
107,268 KB
testcase_04 AC 476 ms
94,776 KB
testcase_05 AC 438 ms
90,808 KB
testcase_06 AC 225 ms
81,984 KB
testcase_07 AC 475 ms
100,312 KB
testcase_08 AC 544 ms
106,624 KB
testcase_09 AC 555 ms
99,632 KB
testcase_10 AC 547 ms
100,916 KB
testcase_11 AC 576 ms
103,340 KB
testcase_12 AC 616 ms
101,920 KB
testcase_13 AC 659 ms
107,264 KB
testcase_14 AC 667 ms
107,520 KB
testcase_15 AC 665 ms
107,428 KB
testcase_16 AC 668 ms
107,192 KB
testcase_17 AC 676 ms
107,520 KB
testcase_18 AC 659 ms
107,572 KB
testcase_19 AC 667 ms
107,568 KB
testcase_20 AC 665 ms
107,596 KB
testcase_21 AC 674 ms
107,264 KB
testcase_22 AC 663 ms
107,520 KB
testcase_23 AC 300 ms
107,192 KB
testcase_24 AC 305 ms
107,392 KB
testcase_25 AC 295 ms
106,068 KB
testcase_26 AC 292 ms
105,996 KB
testcase_27 AC 246 ms
97,412 KB
testcase_28 AC 37 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,q=map(int,input().split())
L=list(map(int,input().split()))
Q=[list(map(int,input().split())) for _ in range(q)]

import sys
sys.setrecursionlimit(10**8)

par=[i for i in range(n+1)]
rank=[0]*(n+1)

def find(x):
  if par[x]==x:
    return x
  else:
    par[x]=find(par[x])
    return par[x]

def same(x,y):
  return find(x)==find(y)

def unit(x,y):
  x=find(x)
  y=find(y)
  if x==y:
    return 0
  if rank[x]<rank[y]:
    par[x]=y
  else:
    par[y]=x
    if rank[x]==rank[y]:
      rank[x]+=1
    
for i in range(1,1+n):
  if L[i-1]==-1:
    L[i-1]=i
for i in range(1,1+n):
  if L[i-1]!=i:
    unit(i,L[i-1])
    
for a,b in Q:
  if same(a,b):
    print("Yes")
  else:
    print("No")
0