結果

問題 No.2319 Friends+
ユーザー shobonvipshobonvip
提出日時 2023-05-26 21:58:59
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,045 ms / 3,000 ms
コード長 1,734 bytes
コンパイル時間 4,528 ms
コンパイル使用メモリ 266,272 KB
実行使用メモリ 59,264 KB
最終ジャッジ日時 2024-06-07 06:47:36
合計ジャッジ時間 30,916 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 1,001 ms
59,264 KB
testcase_03 AC 906 ms
59,264 KB
testcase_04 AC 860 ms
59,136 KB
testcase_05 AC 898 ms
59,136 KB
testcase_06 AC 1,045 ms
59,136 KB
testcase_07 AC 540 ms
7,296 KB
testcase_08 AC 551 ms
7,296 KB
testcase_09 AC 541 ms
7,296 KB
testcase_10 AC 547 ms
7,296 KB
testcase_11 AC 539 ms
7,424 KB
testcase_12 AC 3 ms
6,940 KB
testcase_13 AC 3 ms
6,944 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 3 ms
6,940 KB
testcase_16 AC 3 ms
6,944 KB
testcase_17 AC 2 ms
6,940 KB
testcase_18 AC 501 ms
7,808 KB
testcase_19 AC 482 ms
7,808 KB
testcase_20 AC 494 ms
7,296 KB
testcase_21 AC 484 ms
7,424 KB
testcase_22 AC 503 ms
7,296 KB
testcase_23 AC 494 ms
7,424 KB
testcase_24 AC 479 ms
7,424 KB
testcase_25 AC 477 ms
7,552 KB
testcase_26 AC 487 ms
7,424 KB
testcase_27 AC 482 ms
7,552 KB
testcase_28 AC 485 ms
7,424 KB
testcase_29 AC 524 ms
7,424 KB
testcase_30 AC 496 ms
7,424 KB
testcase_31 AC 501 ms
7,296 KB
testcase_32 AC 498 ms
7,424 KB
testcase_33 AC 491 ms
7,296 KB
testcase_34 AC 485 ms
7,296 KB
testcase_35 AC 479 ms
7,424 KB
testcase_36 AC 487 ms
7,168 KB
testcase_37 AC 670 ms
29,184 KB
testcase_38 AC 489 ms
7,296 KB
testcase_39 AC 481 ms
7,424 KB
testcase_40 AC 479 ms
7,296 KB
testcase_41 AC 492 ms
7,296 KB
testcase_42 AC 499 ms
7,296 KB
testcase_43 AC 496 ms
7,424 KB
testcase_44 AC 525 ms
7,424 KB
testcase_45 AC 735 ms
30,336 KB
testcase_46 AC 630 ms
25,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/all>
using namespace std;
using namespace atcoder;

typedef modint998244353 mint;
typedef long long ll;

int main(){
	int n, m; cin >> n >> m;

	vector<int> p(n);
	for (int i=0; i<n; i++){
		cin >> p[i];
		p[i]--;
	}

	vector<vector<int>> ikeru(n, vector<int>(0));
	for (int i=0; i<m; i++){
		int a, b;
		cin >> a >> b;
		a--; b--;
		ikeru[a].push_back(b);
		ikeru[b].push_back(a);
	}

	int BORDER = 271;

	vector<int> cnt(n,-1);
	vector<vector<int>> hav_friend;
	vector<int> now_world(n);
	vector<vector<int>> koshin(n, vector<int>(0));
	int nowcnt = 0;

	for (int i=0; i<n; i++){
		now_world[i] = p[i];
	}

	for (int i=0; i<n; i++){
		if ((int)ikeru[i].size() >= BORDER){
			cnt[i] = nowcnt;
			hav_friend.emplace_back(vector<int>(n,0));
			for (int j : ikeru[i]){
				hav_friend[nowcnt][now_world[j]]++;
				koshin[j].push_back(nowcnt);
			}
			nowcnt++;
		}
	}

	int q; cin >> q;
	for (int i=0; i<q; i++){
		int x, y;
		cin >> x >> y;
		x--; y--;
		if (now_world[x] == now_world[y]){
			cout << "No\n";
			continue;
		}
		if (cnt[x] == -1){
			bool mode = false;
			for (int j: ikeru[x]){
				if (now_world[j] == now_world[y]){
					mode = true;
				}
			}
			if (mode){
				cout << "Yes\n";
				for (int k:koshin[x]){
					hav_friend[k][now_world[x]]--;
				}
				now_world[x] = now_world[y];
				for (int k:koshin[x]){
					hav_friend[k][now_world[x]]++;
				}
			}else{
				cout << "No\n";
			}
		}else{
			if (hav_friend[cnt[x]][now_world[y]] > 0){
				cout << "Yes\n";
				for (int k:koshin[x]){
					hav_friend[k][now_world[x]]--;
				}
				now_world[x] = now_world[y];
				for (int k:koshin[x]){
					hav_friend[k][now_world[x]]++;
				}
			}else{
				cout << "No\n";
			}
		}
	}
}
0