結果

問題 No.2319 Friends+
ユーザー no wayno way
提出日時 2023-05-26 22:18:07
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 627 ms / 3,000 ms
コード長 535 bytes
コンパイル時間 1,579 ms
コンパイル使用メモリ 167,400 KB
実行使用メモリ 101,608 KB
最終ジャッジ日時 2024-06-07 07:22:13
合計ジャッジ時間 24,192 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 402 ms
54,144 KB
testcase_03 AC 381 ms
54,144 KB
testcase_04 AC 366 ms
54,272 KB
testcase_05 AC 366 ms
54,272 KB
testcase_06 AC 385 ms
54,016 KB
testcase_07 AC 627 ms
101,600 KB
testcase_08 AC 612 ms
101,504 KB
testcase_09 AC 606 ms
101,364 KB
testcase_10 AC 614 ms
101,500 KB
testcase_11 AC 625 ms
101,356 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 4 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 448 ms
52,736 KB
testcase_19 AC 512 ms
101,484 KB
testcase_20 AC 451 ms
52,736 KB
testcase_21 AC 447 ms
52,608 KB
testcase_22 AC 453 ms
52,864 KB
testcase_23 AC 502 ms
77,056 KB
testcase_24 AC 480 ms
64,768 KB
testcase_25 AC 471 ms
58,880 KB
testcase_26 AC 463 ms
55,680 KB
testcase_27 AC 460 ms
54,144 KB
testcase_28 AC 456 ms
53,376 KB
testcase_29 AC 452 ms
53,120 KB
testcase_30 AC 449 ms
52,736 KB
testcase_31 AC 453 ms
52,736 KB
testcase_32 AC 451 ms
52,736 KB
testcase_33 AC 451 ms
52,608 KB
testcase_34 AC 449 ms
52,480 KB
testcase_35 AC 449 ms
52,608 KB
testcase_36 AC 506 ms
101,568 KB
testcase_37 AC 428 ms
54,784 KB
testcase_38 AC 458 ms
101,376 KB
testcase_39 AC 459 ms
101,328 KB
testcase_40 AC 460 ms
101,400 KB
testcase_41 AC 463 ms
101,504 KB
testcase_42 AC 462 ms
101,504 KB
testcase_43 AC 461 ms
101,376 KB
testcase_44 AC 458 ms
101,504 KB
testcase_45 AC 447 ms
101,608 KB
testcase_46 AC 434 ms
55,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
const int N=2e4+10;
bitset<N>a[2][N];
int p[N];
int n,m,x,y,q;
int main(){
	scanf("%d%d",&n,&m);
	for (int i=1;i<=n;i++) {
		scanf("%d",&p[i]);
		a[0][p[i]][i]=1;
	}
	for (int i=1;i<=m;i++){
		scanf("%d%d",&x,&y);
		a[1][x][y]=1;
		a[1][y][x]=1;
	}
	scanf("%d",&q);
	for (int i=1;i<=q;i++){
		scanf("%d%d",&x,&y);
		if (p[x]!=p[y]){
			if ((a[0][p[y]]&a[1][x]).count()){
				puts("Yes");
				a[0][p[x]][x]=0;
				a[0][p[y]][x]=1;
				p[x]=p[y];
			}else puts("No");
		}else puts("No");
	}
}
0