結果

問題 No.2316 Freight Train
ユーザー ryohei22ryohei22
提出日時 2023-06-02 15:52:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 669 ms / 2,000 ms
コード長 381 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 142,208 KB
最終ジャッジ日時 2024-06-08 21:57:21
合計ジャッジ時間 17,241 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,712 KB
testcase_01 AC 42 ms
52,480 KB
testcase_02 AC 43 ms
52,224 KB
testcase_03 AC 650 ms
113,720 KB
testcase_04 AC 395 ms
107,392 KB
testcase_05 AC 311 ms
107,136 KB
testcase_06 AC 168 ms
77,696 KB
testcase_07 AC 521 ms
88,064 KB
testcase_08 AC 434 ms
114,308 KB
testcase_09 AC 500 ms
116,480 KB
testcase_10 AC 525 ms
107,648 KB
testcase_11 AC 497 ms
134,528 KB
testcase_12 AC 577 ms
130,560 KB
testcase_13 AC 669 ms
114,580 KB
testcase_14 AC 662 ms
114,196 KB
testcase_15 AC 667 ms
114,184 KB
testcase_16 AC 645 ms
114,464 KB
testcase_17 AC 658 ms
115,616 KB
testcase_18 AC 659 ms
113,944 KB
testcase_19 AC 659 ms
114,328 KB
testcase_20 AC 658 ms
114,184 KB
testcase_21 AC 660 ms
114,456 KB
testcase_22 AC 663 ms
114,324 KB
testcase_23 AC 578 ms
128,032 KB
testcase_24 AC 662 ms
128,152 KB
testcase_25 AC 623 ms
142,208 KB
testcase_26 AC 581 ms
141,952 KB
testcase_27 AC 484 ms
76,288 KB
testcase_28 AC 43 ms
51,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, Q = map(int, input().split())
P = tuple(map(int, input().split()))

s = set(range(1, N+1))
for p in P:
	if p in s:
		s.remove(p)

g = [-1] * N
for i in s:
	p = i - 1
	lis = [p]
	while P[p] != -1:
		p = P[p] - 1
		lis.append(p)
	for j in lis:
		g[j] = p

for _ in range(Q):
	A, B = map(lambda x: int(x) - 1, input().split())
	if g[A] == g[B]:
		print('Yes')
	else:
		print('No')
0