結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー Carpenters-CatCarpenters-Cat
提出日時 2023-05-19 21:43:05
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 402 ms / 2,000 ms
コード長 1,345 bytes
コンパイル時間 2,597 ms
コンパイル使用メモリ 214,932 KB
実行使用メモリ 18,220 KB
最終ジャッジ日時 2024-06-01 00:22:18
合計ジャッジ時間 36,995 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 203 ms
6,944 KB
testcase_03 AC 201 ms
6,944 KB
testcase_04 AC 202 ms
6,940 KB
testcase_05 AC 193 ms
6,940 KB
testcase_06 AC 204 ms
6,944 KB
testcase_07 AC 159 ms
6,944 KB
testcase_08 AC 217 ms
8,288 KB
testcase_09 AC 235 ms
7,760 KB
testcase_10 AC 198 ms
9,220 KB
testcase_11 AC 280 ms
8,932 KB
testcase_12 AC 195 ms
8,576 KB
testcase_13 AC 354 ms
9,208 KB
testcase_14 AC 236 ms
10,340 KB
testcase_15 AC 177 ms
6,944 KB
testcase_16 AC 289 ms
6,944 KB
testcase_17 AC 226 ms
9,164 KB
testcase_18 AC 379 ms
16,524 KB
testcase_19 AC 384 ms
16,780 KB
testcase_20 AC 402 ms
17,908 KB
testcase_21 AC 402 ms
17,868 KB
testcase_22 AC 373 ms
16,264 KB
testcase_23 AC 383 ms
17,876 KB
testcase_24 AC 383 ms
16,352 KB
testcase_25 AC 380 ms
16,400 KB
testcase_26 AC 374 ms
16,036 KB
testcase_27 AC 388 ms
16,144 KB
testcase_28 AC 383 ms
16,240 KB
testcase_29 AC 376 ms
16,480 KB
testcase_30 AC 384 ms
16,016 KB
testcase_31 AC 379 ms
18,032 KB
testcase_32 AC 389 ms
17,996 KB
testcase_33 AC 388 ms
18,160 KB
testcase_34 AC 394 ms
18,220 KB
testcase_35 AC 389 ms
16,904 KB
testcase_36 AC 379 ms
15,876 KB
testcase_37 AC 387 ms
16,396 KB
testcase_38 AC 206 ms
6,944 KB
testcase_39 AC 338 ms
6,944 KB
testcase_40 AC 346 ms
6,940 KB
testcase_41 AC 342 ms
6,940 KB
testcase_42 AC 372 ms
16,524 KB
testcase_43 AC 378 ms
16,652 KB
testcase_44 AC 386 ms
17,456 KB
testcase_45 AC 386 ms
17,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using Vp = std::vector<pair<int, int>> ;
bool isOK(Vp& ret) {
	int N, M;
	scanf(" %d %d", &N, &M);
	vector<int> A(N), B(M);
	unordered_set<int> sta, stb;
	for (auto& a : A) {
		scanf(" %d", &a);
		sta.insert(a);
	}
	for (auto& a : B) {
		scanf(" %d", &a);
		stb.insert(a);
	}
	// sort(A.begin(), A.end());
	// sort(B.begin(), B.end());
	vector<int> aon, bon, ab;
	for (auto a : A) {
		if (stb.find(a) != stb.end()) {
			ab.push_back(a);
		} else {
			aon.push_back(a);
		}
	}
	for (auto a : B) {
		if (sta.find(a) == sta.end()) {
			bon.push_back(a);
		}
	}
	if (ab.empty() && N && M) {
		return false;
	}
	if (N + M == max(N, M)) {
		for (auto a : A) {
			ret.emplace_back(1, a);
		}
		for (auto a : B) {
			ret.emplace_back(0, a);
		}
		return true;
	}
	for (auto a : aon) {
		ret.emplace_back(1, a);
	}
	ret.emplace_back(1, ab[0]);
	ret.emplace_back(0, ab[0]);
	for (auto a : bon) {
		ret.emplace_back(0, a);
	}
	for (int i = 1; i < ab.size(); i ++) {
		int id = (i & 1) ^ 1;
		ret.emplace_back(id, ab[i]);
		ret.emplace_back(id ^ 1, ab[i]);
	}
	return true;
}
void solve() {
	Vp ret;
	if (isOK(ret)) {
		puts("Yes");
		for (auto [a, b] : ret) {
			cout << (a ? "Red" : "Blue") << " " << b << endl;
		}
	} else {
		puts("No");
	}
}
int main () {
	int n;
	cin >> n;
	while (n --) {
		solve();
	}
}
0