結果

問題 No.2319 Friends+
ユーザー kotatsugamekotatsugame
提出日時 2023-05-26 22:10:27
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,083 bytes
コンパイル時間 1,038 ms
コンパイル使用メモリ 86,180 KB
実行使用メモリ 17,408 KB
最終ジャッジ日時 2024-06-07 07:08:55
合計ジャッジ時間 31,365 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
5,248 KB
testcase_01 AC 4 ms
5,376 KB
testcase_02 AC 1,274 ms
16,384 KB
testcase_03 AC 1,180 ms
16,384 KB
testcase_04 AC 1,081 ms
16,512 KB
testcase_05 AC 1,119 ms
16,512 KB
testcase_06 AC 1,193 ms
16,384 KB
testcase_07 AC 264 ms
17,152 KB
testcase_08 AC 272 ms
17,152 KB
testcase_09 AC 279 ms
17,280 KB
testcase_10 AC 275 ms
17,152 KB
testcase_11 AC 284 ms
17,152 KB
testcase_12 AC 4 ms
5,376 KB
testcase_13 AC 4 ms
5,376 KB
testcase_14 AC 4 ms
5,376 KB
testcase_15 AC 4 ms
5,376 KB
testcase_16 AC 4 ms
5,376 KB
testcase_17 AC 4 ms
5,376 KB
testcase_18 AC 106 ms
11,008 KB
testcase_19 AC 167 ms
17,280 KB
testcase_20 AC 186 ms
16,000 KB
testcase_21 AC 274 ms
14,976 KB
testcase_22 AC 168 ms
16,512 KB
testcase_23 AC 171 ms
17,152 KB
testcase_24 AC 214 ms
17,152 KB
testcase_25 AC 199 ms
17,280 KB
testcase_26 AC 193 ms
17,152 KB
testcase_27 AC 202 ms
17,152 KB
testcase_28 AC 198 ms
17,024 KB
testcase_29 AC 191 ms
16,896 KB
testcase_30 AC 184 ms
16,512 KB
testcase_31 AC 175 ms
15,872 KB
testcase_32 AC 328 ms
14,720 KB
testcase_33 AC 278 ms
13,312 KB
testcase_34 AC 163 ms
12,160 KB
testcase_35 AC 142 ms
11,520 KB
testcase_36 AC 332 ms
16,640 KB
testcase_37 AC 2,973 ms
16,640 KB
testcase_38 AC 225 ms
17,280 KB
testcase_39 AC 257 ms
17,152 KB
testcase_40 AC 303 ms
17,280 KB
testcase_41 AC 410 ms
17,152 KB
testcase_42 AC 611 ms
17,152 KB
testcase_43 AC 959 ms
17,280 KB
testcase_44 AC 1,709 ms
17,408 KB
testcase_45 TLE -
testcase_46 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>
//#include<map>
#include<unordered_map>
using namespace std;
int N,M;
int P[20000];
int U[2<<17],V[2<<17],deg[20000];
vector<int>G[20000];
//map<int,int>EX[20000];
unordered_map<int,int>EX[20000];
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	cin>>N>>M;
	for(int i=0;i<N;i++)
	{
		cin>>P[i];
		P[i]--;
	}
	for(int i=0;i<M;i++)
	{
		cin>>U[i]>>V[i];
		U[i]--,V[i]--;
		if(U[i]==V[i])continue;
		deg[U[i]]++;
		deg[V[i]]++;
	}
	for(int i=0;i<M;i++)
	{
		if(U[i]==V[i])continue;
		if(make_pair(deg[U[i]],U[i])>make_pair(deg[V[i]],V[i]))swap(U[i],V[i]);
		G[U[i]].push_back(V[i]);
		EX[V[i]][P[U[i]]]++;
	}
	int Q;cin>>Q;
	for(;Q--;)
	{
		int X,Y;cin>>X>>Y;X--,Y--;
		if(P[X]==P[Y])
		{
			cout<<"No\n";
			continue;
		}
		bool fn=false;
		{
			auto it=EX[X].find(P[Y]);
			if(it!=EX[X].end()&&it->second)fn=true;
		}
		for(int v:G[X])if(P[v]==P[Y])fn=true;
		if(!fn)cout<<"No\n";
		else
		{
			cout<<"Yes\n";
			for(int v:G[X])
			{
				if(!--EX[v][P[X]])EX[v].erase(EX[v].find(P[X]));
				EX[v][P[Y]]++;
			}
			P[X]=P[Y];
		}
	}
}
0