結果

問題 No.2319 Friends+
ユーザー 00 Sakuda00 Sakuda
提出日時 2024-04-04 18:45:43
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 754 ms / 3,000 ms
コード長 683 bytes
コンパイル時間 2,667 ms
コンパイル使用メモリ 205,708 KB
実行使用メモリ 101,244 KB
最終ジャッジ日時 2024-10-01 00:31:02
合計ジャッジ時間 31,132 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 537 ms
101,168 KB
testcase_03 AC 533 ms
101,112 KB
testcase_04 AC 546 ms
101,104 KB
testcase_05 AC 550 ms
101,068 KB
testcase_06 AC 548 ms
101,180 KB
testcase_07 AC 747 ms
101,048 KB
testcase_08 AC 750 ms
101,104 KB
testcase_09 AC 754 ms
101,112 KB
testcase_10 AC 748 ms
101,224 KB
testcase_11 AC 743 ms
101,148 KB
testcase_12 AC 4 ms
6,816 KB
testcase_13 AC 4 ms
6,820 KB
testcase_14 AC 4 ms
6,816 KB
testcase_15 AC 4 ms
6,820 KB
testcase_16 AC 4 ms
6,820 KB
testcase_17 AC 2 ms
6,820 KB
testcase_18 AC 598 ms
101,144 KB
testcase_19 AC 640 ms
101,100 KB
testcase_20 AC 568 ms
101,108 KB
testcase_21 AC 570 ms
101,116 KB
testcase_22 AC 576 ms
101,068 KB
testcase_23 AC 595 ms
101,068 KB
testcase_24 AC 601 ms
101,108 KB
testcase_25 AC 576 ms
101,076 KB
testcase_26 AC 584 ms
101,184 KB
testcase_27 AC 580 ms
101,068 KB
testcase_28 AC 575 ms
101,224 KB
testcase_29 AC 579 ms
101,184 KB
testcase_30 AC 589 ms
101,076 KB
testcase_31 AC 579 ms
101,044 KB
testcase_32 AC 563 ms
101,084 KB
testcase_33 AC 568 ms
101,084 KB
testcase_34 AC 563 ms
101,148 KB
testcase_35 AC 562 ms
101,076 KB
testcase_36 AC 634 ms
101,096 KB
testcase_37 AC 512 ms
101,104 KB
testcase_38 AC 555 ms
101,220 KB
testcase_39 AC 556 ms
101,164 KB
testcase_40 AC 563 ms
101,244 KB
testcase_41 AC 565 ms
101,140 KB
testcase_42 AC 546 ms
101,044 KB
testcase_43 AC 554 ms
101,072 KB
testcase_44 AC 555 ms
101,072 KB
testcase_45 AC 545 ms
101,188 KB
testcase_46 AC 524 ms
101,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main() {
	int MN = 2e4;
	int N, M;cin >> N >> M;
	vector<bitset<(int)2e4>> S(N);
	vector<bitset<(int)2e4>> T(N);
	vector<int> P(N);
	for (int i = 0;i < N;i++) {
		cin >> P[i];
		P[i]--;
		T[P[i]].set(i);
	}
	for (int i = 0;i < M;i++) {
		int a, b;cin >> a >> b;
		a--;b--;
		S[a].set(b);
		S[b].set(a);
	}
	int Q;cin >> Q;
	while (Q--) {
		int x, y;cin >> x >> y;x--;y--;
		if (P[x] == P[y]) {
			cout << "No" << endl;
			continue;
		}
		int px = P[x];int py = P[y];
		auto res = S[x] & T[py];
		if (!res.any()) {
			cout << "No" << endl;
			continue;
		}
		T[py].set(x);
		T[px].reset(x);
		P[x] = py;
		cout << "Yes" << endl;
	}
}
0