結果

問題 No.2316 Freight Train
ユーザー ttkkggwwttkkggww
提出日時 2023-05-26 21:31:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 328 ms / 2,000 ms
コード長 639 bytes
コンパイル時間 4,300 ms
コンパイル使用メモリ 266,092 KB
実行使用メモリ 6,528 KB
最終ジャッジ日時 2024-06-07 05:42:40
合計ジャッジ時間 13,446 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 303 ms
6,272 KB
testcase_04 AC 164 ms
5,376 KB
testcase_05 AC 120 ms
5,376 KB
testcase_06 AC 42 ms
5,376 KB
testcase_07 AC 279 ms
5,376 KB
testcase_08 AC 159 ms
5,504 KB
testcase_09 AC 226 ms
5,632 KB
testcase_10 AC 257 ms
5,376 KB
testcase_11 AC 215 ms
5,632 KB
testcase_12 AC 269 ms
5,888 KB
testcase_13 AC 314 ms
6,400 KB
testcase_14 AC 309 ms
6,272 KB
testcase_15 AC 328 ms
6,272 KB
testcase_16 AC 316 ms
6,400 KB
testcase_17 AC 323 ms
6,528 KB
testcase_18 AC 316 ms
6,400 KB
testcase_19 AC 312 ms
6,400 KB
testcase_20 AC 308 ms
6,400 KB
testcase_21 AC 312 ms
6,400 KB
testcase_22 AC 319 ms
6,400 KB
testcase_23 AC 303 ms
6,400 KB
testcase_24 AC 297 ms
6,400 KB
testcase_25 AC 306 ms
6,528 KB
testcase_26 AC 296 ms
6,528 KB
testcase_27 AC 267 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include<atcoder/all>
using namespace atcoder;
using ll = long long;
int n,q;
vector<int> P;
vector<int> A,B;

void solve(){
	dsu UF(n);
	for(int i = 0;i<n;i++){
		if(P[i]<0)continue;
		UF.merge(i,P[i]);
	}
	for(int i = 0;i<q;i++){
		if(UF.same(A[i],B[i])){
			cout<<"Yes"<<endl;
		}else{
			cout<<"No"<<endl;
		}
	}
}

signed main(){
	cin.tie(nullptr);
	ios::sync_with_stdio(false);
	cin >> n >> q;
	P = vector<int>(n);
	for(auto &i:P)cin >> i;
	for(auto &i:P)i--;
	A = B = vector<int>(q);
	for(int i = 0;i<q;i++){
		cin >> A[i] >> B[i];
	}
	for(auto &i:A)i--;
	for(auto &i:B)i--;
	solve();
}
0