結果

問題 No.2316 Freight Train
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-08-31 12:12:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 832 ms / 2,000 ms
コード長 530 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 109,672 KB
最終ジャッジ日時 2024-08-31 12:12:50
合計ジャッジ時間 21,769 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,540 KB
testcase_01 AC 36 ms
52,496 KB
testcase_02 AC 36 ms
52,552 KB
testcase_03 AC 747 ms
109,128 KB
testcase_04 AC 459 ms
91,040 KB
testcase_05 AC 402 ms
91,200 KB
testcase_06 AC 192 ms
77,648 KB
testcase_07 AC 618 ms
82,472 KB
testcase_08 AC 521 ms
109,260 KB
testcase_09 AC 597 ms
96,148 KB
testcase_10 AC 652 ms
91,212 KB
testcase_11 AC 565 ms
105,768 KB
testcase_12 AC 678 ms
102,216 KB
testcase_13 AC 762 ms
109,608 KB
testcase_14 AC 776 ms
109,044 KB
testcase_15 AC 766 ms
109,180 KB
testcase_16 AC 771 ms
108,960 KB
testcase_17 AC 757 ms
109,440 KB
testcase_18 AC 770 ms
109,380 KB
testcase_19 AC 778 ms
109,128 KB
testcase_20 AC 780 ms
109,564 KB
testcase_21 AC 832 ms
109,040 KB
testcase_22 AC 785 ms
109,672 KB
testcase_23 AC 657 ms
109,256 KB
testcase_24 AC 678 ms
109,312 KB
testcase_25 AC 637 ms
107,620 KB
testcase_26 AC 569 ms
107,784 KB
testcase_27 AC 547 ms
77,460 KB
testcase_28 AC 36 ms
52,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,q=map(int,input().split())
p=list(map(int,input().split()))
r=list(range(n))
c=[int(p[i]==-1) for i in range(n)]

def root(x):
  p=x
  l=[p]
  while r[p]!=p:
    p=r[p]
    l.append(p)
  for p in l:
    r[p]=l[-1]
  return r[x]

def union(x,y):
  rx=root(x)
  ry=root(y)
  if rx==ry:
    return
  if (c[rx],rx)<(c[ry],ry):
    rx,ry=ry,rx
  r[ry]=rx
  return

for i in range(n):
  if p[i]!=-1:
    p[i]-=1
    union(i,p[i])

for i in range(q):
  a,b=map(int,input().split())
  a-=1
  b-=1
  print(["No","Yes"][root(a)==root(b)])
0