結果

問題 No.2319 Friends+
ユーザー Carpenters-CatCarpenters-Cat
提出日時 2023-05-28 19:40:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,012 bytes
コンパイル時間 2,326 ms
コンパイル使用メモリ 211,528 KB
実行使用メモリ 169,344 KB
最終ジャッジ日時 2024-06-08 11:20:59
合計ジャッジ時間 36,019 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 625 ms
13,696 KB
testcase_03 AC 637 ms
13,440 KB
testcase_04 AC 616 ms
13,568 KB
testcase_05 AC 612 ms
13,568 KB
testcase_06 AC 617 ms
13,568 KB
testcase_07 AC 1,124 ms
34,688 KB
testcase_08 AC 1,057 ms
34,688 KB
testcase_09 AC 1,080 ms
34,560 KB
testcase_10 AC 1,082 ms
34,688 KB
testcase_11 AC 1,060 ms
34,560 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 3 ms
5,376 KB
testcase_15 AC 3 ms
5,376 KB
testcase_16 AC 4 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 518 ms
11,392 KB
testcase_19 AC 721 ms
25,216 KB
testcase_20 AC 954 ms
22,528 KB
testcase_21 AC 761 ms
19,840 KB
testcase_22 AC 1,300 ms
24,064 KB
testcase_23 AC 770 ms
25,344 KB
testcase_24 AC 771 ms
25,472 KB
testcase_25 AC 809 ms
25,344 KB
testcase_26 AC 772 ms
25,216 KB
testcase_27 AC 801 ms
25,088 KB
testcase_28 TLE -
testcase_29 AC 1,898 ms
25,600 KB
testcase_30 AC 1,233 ms
23,808 KB
testcase_31 AC 983 ms
22,144 KB
testcase_32 AC 860 ms
19,200 KB
testcase_33 AC 603 ms
15,616 KB
testcase_34 AC 582 ms
13,056 KB
testcase_35 AC 545 ms
12,160 KB
testcase_36 AC 1,725 ms
169,344 KB
testcase_37 AC 1,917 ms
18,560 KB
testcase_38 AC 792 ms
25,344 KB
testcase_39 AC 819 ms
25,472 KB
testcase_40 AC 779 ms
25,344 KB
testcase_41 AC 847 ms
25,344 KB
testcase_42 AC 951 ms
25,344 KB
testcase_43 AC 1,110 ms
25,600 KB
testcase_44 AC 1,486 ms
26,112 KB
testcase_45 AC 2,100 ms
23,040 KB
testcase_46 AC 504 ms
16,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main () {
	int N, M;
	cin >> N >> M;
	std::vector<int> A(N);
	for (auto& a : A) cin >> a;
	vector<vector<int>> gr(N);
	for (int i = 0; i < M; i ++) {
		int a, b;
		cin >> 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;
	cin >> Q;
	while (Q--) {
		int x, y;
		cin >> 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