結果

問題 No.2319 Friends+
ユーザー 沙耶花沙耶花
提出日時 2023-05-26 21:41:04
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,335 bytes
コンパイル時間 4,633 ms
コンパイル使用メモリ 272,724 KB
実行使用メモリ 29,184 KB
最終ジャッジ日時 2024-06-07 06:09:12
合計ジャッジ時間 44,792 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2,120 ms
29,184 KB
testcase_03 AC 2,004 ms
29,184 KB
testcase_04 AC 1,761 ms
29,184 KB
testcase_05 AC 1,929 ms
29,184 KB
testcase_06 AC 1,989 ms
29,184 KB
testcase_07 AC 566 ms
8,192 KB
testcase_08 AC 569 ms
8,320 KB
testcase_09 AC 552 ms
8,192 KB
testcase_10 AC 557 ms
8,192 KB
testcase_11 AC 564 ms
8,192 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 3 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 529 ms
8,704 KB
testcase_19 AC 542 ms
9,600 KB
testcase_20 AC 509 ms
8,192 KB
testcase_21 AC 498 ms
8,320 KB
testcase_22 AC 519 ms
8,320 KB
testcase_23 AC 528 ms
8,704 KB
testcase_24 AC 532 ms
8,448 KB
testcase_25 AC 520 ms
8,320 KB
testcase_26 AC 518 ms
8,320 KB
testcase_27 AC 516 ms
8,320 KB
testcase_28 AC 571 ms
8,320 KB
testcase_29 AC 536 ms
8,192 KB
testcase_30 AC 508 ms
8,192 KB
testcase_31 AC 512 ms
8,320 KB
testcase_32 AC 495 ms
8,320 KB
testcase_33 AC 506 ms
8,320 KB
testcase_34 AC 496 ms
8,320 KB
testcase_35 AC 499 ms
8,192 KB
testcase_36 AC 507 ms
8,064 KB
testcase_37 TLE -
testcase_38 AC 505 ms
8,192 KB
testcase_39 AC 514 ms
8,320 KB
testcase_40 AC 506 ms
8,320 KB
testcase_41 AC 504 ms
8,320 KB
testcase_42 AC 512 ms
8,320 KB
testcase_43 AC 517 ms
8,320 KB
testcase_44 AC 529 ms
8,448 KB
testcase_45 TLE -
testcase_46 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <atcoder/all>
#include <bits/stdc++.h>
using namespace std;
using namespace atcoder;
using mint = modint998244353;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 4000000000000000001
#define sq 500


int main(){
	int N,M;
	cin>>N>>M;
	
	vector<int> p(N);
	rep(i,N){
		cin>>p[i];
		p[i]--;
	}
	
	vector<vector<int>> E(N);
	rep(i,M){
		int u,v;
		cin>>u>>v;
		u--,v--;
		E[u].push_back(v);
		E[v].push_back(u);
	}
	vector<int> big(N);
	rep(i,N){
		if(E[i].size()>sq)big[i] = 1;
	}
	
	vector<vector<int>> nE(N);
	rep(i,N){
		rep(j,E[i].size()){
			if(big[E[i][j]])nE[i].push_back(E[i][j]);
		}
	}
	
	vector<map<int,int>> mp(N);
	rep(i,N){
		rep(j,nE[i].size()){
			int to = nE[i][j];
			mp[to][p[i]]++;
		}
	}
	
	int q;
	cin>>q;
	rep(_,q){
		int a,b;
		cin>>a>>b;
		a--,b--;
		if(p[a]==p[b]){
			cout<<"No"<<endl;
			continue;
		}
		bool f = false;
		if(big[a]){
			if(mp[a].count(p[b]))f = true;
		}
		else{
			rep(i,E[a].size()){
				int to = E[a][i];
				if(p[to]==p[b])f = true;
			}
		}
		if(!f){
			cout<<"No"<<endl;
			continue;
		}
		cout<<"Yes"<<endl;
		rep(i,nE[a].size()){
			int to = nE[a][i];
			mp[to][p[a]]--;
			if(mp[to][p[a]]==0)mp[to].erase(p[a]);
		}
		p[a] = p[b];
		rep(i,nE[a].size()){
			int to = nE[a][i];
			mp[to][p[a]]++;
		}
	}
	
	return 0;
}
0