結果

問題 No.2316 Freight Train
ユーザー no wayno way
提出日時 2023-05-26 21:32:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 84 ms / 2,000 ms
コード長 477 bytes
コンパイル時間 1,680 ms
コンパイル使用メモリ 166,232 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-07 05:44:59
合計ジャッジ時間 6,090 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 77 ms
5,376 KB
testcase_04 AC 41 ms
5,376 KB
testcase_05 AC 32 ms
5,376 KB
testcase_06 AC 9 ms
5,376 KB
testcase_07 AC 53 ms
5,376 KB
testcase_08 AC 54 ms
5,376 KB
testcase_09 AC 57 ms
5,376 KB
testcase_10 AC 55 ms
5,376 KB
testcase_11 AC 59 ms
5,376 KB
testcase_12 AC 66 ms
5,376 KB
testcase_13 AC 82 ms
5,376 KB
testcase_14 AC 82 ms
5,376 KB
testcase_15 AC 81 ms
5,376 KB
testcase_16 AC 83 ms
5,376 KB
testcase_17 AC 81 ms
5,376 KB
testcase_18 AC 84 ms
5,376 KB
testcase_19 AC 83 ms
5,376 KB
testcase_20 AC 83 ms
5,376 KB
testcase_21 AC 82 ms
5,376 KB
testcase_22 AC 81 ms
5,376 KB
testcase_23 AC 63 ms
5,376 KB
testcase_24 AC 72 ms
5,376 KB
testcase_25 AC 65 ms
5,376 KB
testcase_26 AC 62 ms
5,376 KB
testcase_27 AC 34 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
const int N=2e5+10;
int fa[N];
int n,q,x,y;
int getfather(int x){return fa[x]==x?x:fa[x]=getfather(fa[x]);}
void merge(int x,int y){
	x=getfather(x); y=getfather(y);
	fa[x]=y;
}
int main(){
	scanf("%d%d",&n,&q);
	for (int i=1;i<=n;i++) fa[i]=i;
	for (int i=1;i<=n;i++){
		scanf("%d",&x);
		if (x!=-1) merge(i,x);
	}
	for (int i=1;i<=q;i++){
		scanf("%d%d",&x,&y);
		if (getfather(x)==getfather(y)) puts("Yes"); else puts("No");
	}
}
0