結果

問題 No.2316 Freight Train
ユーザー VvyLwVvyLw
提出日時 2023-05-26 23:44:07
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 464 ms / 2,000 ms
コード長 305 bytes
コンパイル時間 1,068 ms
コンパイル使用メモリ 99,536 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-07 09:28:33
合計ジャッジ時間 13,306 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 442 ms
5,376 KB
testcase_04 AC 234 ms
5,376 KB
testcase_05 AC 171 ms
5,376 KB
testcase_06 AC 57 ms
5,376 KB
testcase_07 AC 383 ms
5,376 KB
testcase_08 AC 258 ms
5,376 KB
testcase_09 AC 326 ms
5,376 KB
testcase_10 AC 361 ms
5,376 KB
testcase_11 AC 302 ms
5,376 KB
testcase_12 AC 383 ms
5,376 KB
testcase_13 AC 450 ms
5,376 KB
testcase_14 AC 451 ms
5,376 KB
testcase_15 AC 464 ms
5,376 KB
testcase_16 AC 439 ms
5,376 KB
testcase_17 AC 448 ms
5,376 KB
testcase_18 AC 443 ms
5,376 KB
testcase_19 AC 436 ms
5,376 KB
testcase_20 AC 449 ms
5,376 KB
testcase_21 AC 453 ms
5,376 KB
testcase_22 AC 453 ms
5,376 KB
testcase_23 AC 410 ms
5,376 KB
testcase_24 AC 437 ms
5,376 KB
testcase_25 AC 418 ms
5,376 KB
testcase_26 AC 401 ms
5,376 KB
testcase_27 AC 314 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <atcoder/dsu>
using namespace std;
using namespace atcoder;

int main() {
	int n,q; cin>>n>>q;
	dsu uf(n+1);
	for(int i=1; i<=n; ++i) {
		int p; cin>>p;
		if(p==-1) continue;
		uf.merge(i,p);
	}
	while(q--) {
		int a,b; cin>>a>>b;
		cout<<(uf.same(a,b)?"Yes":"No")<<'\n';
	}
}
0