結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー Carpenters-CatCarpenters-Cat
提出日時 2023-05-19 21:43:05
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 428 ms / 2,000 ms
コード長 1,345 bytes
コンパイル時間 2,933 ms
コンパイル使用メモリ 214,736 KB
実行使用メモリ 18,224 KB
最終ジャッジ日時 2024-12-21 02:03:03
合計ジャッジ時間 39,961 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 226 ms
5,248 KB
testcase_03 AC 217 ms
5,248 KB
testcase_04 AC 223 ms
5,248 KB
testcase_05 AC 206 ms
5,248 KB
testcase_06 AC 217 ms
5,248 KB
testcase_07 AC 162 ms
5,248 KB
testcase_08 AC 228 ms
8,292 KB
testcase_09 AC 238 ms
7,888 KB
testcase_10 AC 208 ms
9,224 KB
testcase_11 AC 294 ms
9,060 KB
testcase_12 AC 211 ms
8,448 KB
testcase_13 AC 371 ms
9,084 KB
testcase_14 AC 251 ms
10,336 KB
testcase_15 AC 186 ms
6,852 KB
testcase_16 AC 299 ms
6,884 KB
testcase_17 AC 243 ms
9,040 KB
testcase_18 AC 405 ms
16,528 KB
testcase_19 AC 425 ms
16,784 KB
testcase_20 AC 397 ms
17,916 KB
testcase_21 AC 415 ms
17,860 KB
testcase_22 AC 405 ms
16,392 KB
testcase_23 AC 415 ms
17,872 KB
testcase_24 AC 410 ms
16,268 KB
testcase_25 AC 397 ms
16,400 KB
testcase_26 AC 418 ms
16,040 KB
testcase_27 AC 409 ms
16,268 KB
testcase_28 AC 415 ms
16,240 KB
testcase_29 AC 396 ms
16,228 KB
testcase_30 AC 398 ms
15,884 KB
testcase_31 AC 421 ms
17,900 KB
testcase_32 AC 424 ms
17,740 KB
testcase_33 AC 426 ms
17,964 KB
testcase_34 AC 420 ms
18,224 KB
testcase_35 AC 409 ms
16,904 KB
testcase_36 AC 405 ms
15,748 KB
testcase_37 AC 404 ms
16,520 KB
testcase_38 AC 212 ms
5,248 KB
testcase_39 AC 352 ms
5,248 KB
testcase_40 AC 356 ms
5,248 KB
testcase_41 AC 368 ms
5,248 KB
testcase_42 AC 399 ms
16,652 KB
testcase_43 AC 404 ms
16,524 KB
testcase_44 AC 401 ms
17,580 KB
testcase_45 AC 428 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