結果

問題 No.2319 Friends+
ユーザー kotatsugamekotatsugame
提出日時 2023-05-26 22:11:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,128 bytes
コンパイル時間 1,039 ms
コンパイル使用メモリ 86,200 KB
実行使用メモリ 17,520 KB
最終ジャッジ日時 2024-06-07 07:10:46
合計ジャッジ時間 26,979 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 1,154 ms
16,580 KB
testcase_03 AC 1,072 ms
16,384 KB
testcase_04 AC 970 ms
16,512 KB
testcase_05 AC 975 ms
16,512 KB
testcase_06 AC 1,076 ms
16,384 KB
testcase_07 AC 185 ms
17,152 KB
testcase_08 AC 188 ms
17,280 KB
testcase_09 AC 180 ms
17,220 KB
testcase_10 AC 178 ms
17,280 KB
testcase_11 AC 210 ms
17,280 KB
testcase_12 AC 4 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 3 ms
5,376 KB
testcase_18 AC 99 ms
11,136 KB
testcase_19 AC 144 ms
17,152 KB
testcase_20 AC 130 ms
16,128 KB
testcase_21 AC 226 ms
15,104 KB
testcase_22 AC 146 ms
16,512 KB
testcase_23 AC 150 ms
17,152 KB
testcase_24 AC 140 ms
17,408 KB
testcase_25 AC 137 ms
17,280 KB
testcase_26 AC 137 ms
17,280 KB
testcase_27 AC 149 ms
17,152 KB
testcase_28 AC 141 ms
17,024 KB
testcase_29 AC 137 ms
16,832 KB
testcase_30 AC 131 ms
16,384 KB
testcase_31 AC 129 ms
16,000 KB
testcase_32 AC 287 ms
14,720 KB
testcase_33 AC 227 ms
13,312 KB
testcase_34 AC 142 ms
12,160 KB
testcase_35 AC 124 ms
11,648 KB
testcase_36 AC 324 ms
16,768 KB
testcase_37 AC 2,820 ms
16,768 KB
testcase_38 AC 168 ms
17,224 KB
testcase_39 AC 202 ms
17,280 KB
testcase_40 AC 250 ms
17,408 KB
testcase_41 AC 355 ms
17,280 KB
testcase_42 AC 548 ms
17,152 KB
testcase_43 AC 901 ms
17,152 KB
testcase_44 AC 1,633 ms
17,520 KB
testcase_45 TLE -
testcase_46 AC 2,046 ms
15,872 KB
権限があれば一括ダウンロードができます

ソースコード

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;
		}
		if(!fn)
		{
			for(int v:G[X])if(P[v]==P[Y])
			{
				fn=true;
				break;
			}
		}
		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