結果

問題 No.2316 Freight Train
ユーザー 👑 p-adicp-adic
提出日時 2023-05-28 08:10:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,747 ms / 2,000 ms
コード長 271 bytes
コンパイル時間 90 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 31,900 KB
最終ジャッジ日時 2024-07-01 16:05:24
合計ジャッジ時間 40,031 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 29 ms
10,624 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 1,669 ms
31,184 KB
testcase_04 AC 908 ms
20,504 KB
testcase_05 AC 661 ms
20,856 KB
testcase_06 AC 229 ms
11,904 KB
testcase_07 AC 1,374 ms
15,652 KB
testcase_08 AC 1,002 ms
31,900 KB
testcase_09 AC 1,238 ms
23,516 KB
testcase_10 AC 1,390 ms
20,720 KB
testcase_11 AC 1,171 ms
28,776 KB
testcase_12 AC 1,425 ms
26,988 KB
testcase_13 AC 1,712 ms
30,564 KB
testcase_14 AC 1,698 ms
30,608 KB
testcase_15 AC 1,742 ms
31,812 KB
testcase_16 AC 1,716 ms
30,732 KB
testcase_17 AC 1,698 ms
30,688 KB
testcase_18 AC 1,698 ms
30,604 KB
testcase_19 AC 1,683 ms
30,616 KB
testcase_20 AC 1,747 ms
31,684 KB
testcase_21 AC 1,685 ms
30,484 KB
testcase_22 AC 1,711 ms
30,484 KB
testcase_23 AC 1,459 ms
30,560 KB
testcase_24 AC 1,509 ms
30,564 KB
testcase_25 AC 1,470 ms
23,620 KB
testcase_26 AC 1,396 ms
23,744 KB
testcase_27 AC 1,269 ms
10,624 KB
testcase_28 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

R=range
def J():
	return map(int,input().split())
N,Q=J()
P=list(J())
p=[n for n in R(N+1)]
def r(i):
	m=p[i]
	while i!=m:
		p[i]=i=p[m]
		m=p[i]
	return i
for i in R(N):
	if P[i]>0:
		A,B=r(i+1),r(P[i])
		p[A]=B
for q in R(Q):
	A,B=J()
	print("Yes"if r(A)==r(B)else"No")
0