結果

問題 No.2319 Friends+
ユーザー Carpenters-CatCarpenters-Cat
提出日時 2023-05-28 19:47:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,086 ms / 3,000 ms
コード長 1,058 bytes
コンパイル時間 2,403 ms
コンパイル使用メモリ 212,920 KB
実行使用メモリ 169,472 KB
最終ジャッジ日時 2024-06-08 11:25:58
合計ジャッジ時間 25,835 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 181 ms
13,568 KB
testcase_03 AC 180 ms
13,440 KB
testcase_04 AC 166 ms
13,568 KB
testcase_05 AC 165 ms
13,568 KB
testcase_06 AC 171 ms
13,568 KB
testcase_07 AC 348 ms
34,688 KB
testcase_08 AC 337 ms
34,560 KB
testcase_09 AC 339 ms
34,688 KB
testcase_10 AC 344 ms
34,560 KB
testcase_11 AC 342 ms
34,688 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 104 ms
11,392 KB
testcase_19 AC 213 ms
25,344 KB
testcase_20 AC 446 ms
22,528 KB
testcase_21 AC 278 ms
19,840 KB
testcase_22 AC 666 ms
24,064 KB
testcase_23 AC 215 ms
25,344 KB
testcase_24 AC 213 ms
25,472 KB
testcase_25 AC 212 ms
25,344 KB
testcase_26 AC 210 ms
25,344 KB
testcase_27 AC 214 ms
25,088 KB
testcase_28 AC 2,086 ms
29,056 KB
testcase_29 AC 1,128 ms
25,472 KB
testcase_30 AC 614 ms
23,808 KB
testcase_31 AC 383 ms
22,272 KB
testcase_32 AC 260 ms
19,200 KB
testcase_33 AC 179 ms
15,616 KB
testcase_34 AC 143 ms
13,312 KB
testcase_35 AC 126 ms
12,160 KB
testcase_36 AC 1,168 ms
169,472 KB
testcase_37 AC 1,208 ms
18,688 KB
testcase_38 AC 240 ms
25,472 KB
testcase_39 AC 247 ms
25,472 KB
testcase_40 AC 260 ms
25,472 KB
testcase_41 AC 308 ms
25,344 KB
testcase_42 AC 372 ms
25,472 KB
testcase_43 AC 737 ms
25,472 KB
testcase_44 AC 1,054 ms
25,984 KB
testcase_45 AC 1,462 ms
23,040 KB
testcase_46 AC 113 ms
16,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main () {
	int N, M;
	scanf(" %d %d", &N, &M);
	std::vector<int> A(N);
	for (auto& a : A) scanf(" %d", &a);
	vector<vector<int>> gr(N);
	for (int i = 0; i < M; i ++) {
		int a, b;
		scanf(" %d %d", &a, &b);
		gr[--a].push_back(--b);
		gr[b].push_back(a);
	}
	int s = max(1, (int)sqrt(M));
	vector<vector<int>> bb(N);
	vector<unordered_map<int, int>> X(N);
	for (int i = 0; i < N; i ++) {
		if (gr[i].size() > s) {
			for (auto v : gr[i]) {
				bb[v].push_back(i);
			}
		} else {
			for (auto v : gr[i]) {
				X[v][A[i]] ++;
			}
		}
	}
	int Q;
	scanf(" %d", &Q);
	while (Q--) {
		int x, y;
		scanf(" %d %d", &x, &y);
		x --; y --;
		if (A[x] == A[y]) {
			puts("No");
			continue;
		}
		int a = A[y];
		bool ok = false;
		if (X[x][a] > 0) {
			ok = true;
		} else {
			for (auto v : bb[x]) {
				ok = ok || (a == A[v]);
			}
		}
		if (ok) {
			puts("Yes");
			if (gr[x].size() <= s) {
				for (auto v : gr[x]) {
					X[v][A[x]] --;
					X[v][a] ++;
				}
			}
			A[x] = a;
		} else {
			puts("No");
		}
	}
}
0