結果

問題 No.2316 Freight Train
ユーザー timitimi
提出日時 2023-05-26 21:27:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 901 ms / 2,000 ms
コード長 720 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 114,336 KB
最終ジャッジ日時 2024-06-07 05:29:42
合計ジャッジ時間 20,626 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,096 KB
testcase_01 AC 38 ms
52,480 KB
testcase_02 AC 38 ms
52,736 KB
testcase_03 AC 848 ms
113,408 KB
testcase_04 AC 594 ms
93,312 KB
testcase_05 AC 508 ms
92,928 KB
testcase_06 AC 252 ms
78,752 KB
testcase_07 AC 675 ms
83,748 KB
testcase_08 AC 649 ms
113,920 KB
testcase_09 AC 715 ms
98,560 KB
testcase_10 AC 726 ms
93,776 KB
testcase_11 AC 695 ms
109,952 KB
testcase_12 AC 771 ms
106,228 KB
testcase_13 AC 901 ms
114,048 KB
testcase_14 AC 898 ms
114,048 KB
testcase_15 AC 879 ms
114,048 KB
testcase_16 AC 885 ms
114,292 KB
testcase_17 AC 862 ms
114,108 KB
testcase_18 AC 879 ms
114,304 KB
testcase_19 AC 886 ms
114,336 KB
testcase_20 AC 869 ms
114,048 KB
testcase_21 AC 877 ms
114,252 KB
testcase_22 AC 886 ms
114,048 KB
testcase_23 AC 516 ms
114,044 KB
testcase_24 AC 543 ms
113,792 KB
testcase_25 AC 521 ms
111,908 KB
testcase_26 AC 522 ms
112,300 KB
testcase_27 AC 457 ms
76,160 KB
testcase_28 AC 37 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,Q=map(int, input().split())
A=list(map(int, input().split()))

par=[i for i in range(N)]
rank=[0]*(N)
friend=[0]*N
block=[0]*N
size=[1]*N
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 union(x,y):
  x=find(x)
  y=find(y)
  if x==y:
    return 
  if rank[x]>rank[y]:
    par[y]=x
    size[x]+=size[y]
  else:
    par[x]=y
    size[y]+=size[x]
    if rank[x]==rank[y]:
      rank[y]+=1
 
 
for a in range(N):
  #a,b=map(int,input().split())
  b=A[a]
  if b!=-1:
    union(a,b-1)
    
for _ in range(Q):
  a,b=map(int,input().split())
  a-=1;b-=1
  if same(a,b):
    print('Yes')
  else:
    print('No')
0