結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー norikamenorikame
提出日時 2023-05-19 22:04:55
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 565 ms / 2,000 ms
コード長 1,985 bytes
コンパイル時間 7,081 ms
コンパイル使用メモリ 321,508 KB
実行使用メモリ 17,076 KB
最終ジャッジ日時 2024-12-21 02:44:26
合計ジャッジ時間 46,575 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 307 ms
6,816 KB
testcase_03 AC 269 ms
6,816 KB
testcase_04 AC 265 ms
6,820 KB
testcase_05 AC 252 ms
6,816 KB
testcase_06 AC 271 ms
6,820 KB
testcase_07 AC 221 ms
6,816 KB
testcase_08 AC 288 ms
8,040 KB
testcase_09 AC 287 ms
7,120 KB
testcase_10 AC 256 ms
8,736 KB
testcase_11 AC 352 ms
8,688 KB
testcase_12 AC 257 ms
7,948 KB
testcase_13 AC 426 ms
8,828 KB
testcase_14 AC 304 ms
9,572 KB
testcase_15 AC 238 ms
6,540 KB
testcase_16 AC 357 ms
6,808 KB
testcase_17 AC 288 ms
8,912 KB
testcase_18 AC 445 ms
15,376 KB
testcase_19 AC 464 ms
16,396 KB
testcase_20 AC 452 ms
16,888 KB
testcase_21 AC 480 ms
16,964 KB
testcase_22 AC 449 ms
15,372 KB
testcase_23 AC 474 ms
16,972 KB
testcase_24 AC 455 ms
15,500 KB
testcase_25 AC 460 ms
15,372 KB
testcase_26 AC 449 ms
15,008 KB
testcase_27 AC 472 ms
15,496 KB
testcase_28 AC 473 ms
15,348 KB
testcase_29 AC 467 ms
15,332 KB
testcase_30 AC 481 ms
15,628 KB
testcase_31 AC 489 ms
16,880 KB
testcase_32 AC 495 ms
16,972 KB
testcase_33 AC 486 ms
16,948 KB
testcase_34 AC 504 ms
17,076 KB
testcase_35 AC 484 ms
16,396 KB
testcase_36 AC 461 ms
15,108 KB
testcase_37 AC 474 ms
15,372 KB
testcase_38 AC 416 ms
5,248 KB
testcase_39 AC 565 ms
5,248 KB
testcase_40 AC 422 ms
5,248 KB
testcase_41 AC 444 ms
5,248 KB
testcase_42 AC 484 ms
14,092 KB
testcase_43 AC 458 ms
15,500 KB
testcase_44 AC 476 ms
16,564 KB
testcase_45 AC 455 ms
16,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// 

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;

using ll = long long;

#define rep(i, n) for (int i=0; i<(int)(n); ++(i))
#define rep3(i, m, n) for (int i=(m); (i)<(int)(n); ++(i))
#define repr(i, n) for (int i=(int)(n)-1; (i)>=0; --(i))
#define rep3r(i, m, n) for (int i=(int)(n)-1; (i)>=(int)(m); --(i))
#define all(x) (x).begin(), (x).end()

const int INF = (int)(1e9);

int main() {
	int t0;
	cin >> t0;
	rep(i0, t0) {
		int n, m;
		cin >> n >> m;
		vector<int> a(n), b(m);
		rep(i, n) cin >> a[i];
		rep(i, m) cin >> b[i];
		unordered_set<int> ast(all(a)), bst(all(b));
		vector<int> clst;
		for (auto itr=ast.begin(); itr!=ast.end(); ) {
			if (bst.find(*itr) != bst.end()) {
				clst.push_back(*itr);
				bst.erase(*itr);
				itr = ast.erase(itr);
			}
			else ++itr;
		}
		vector<pair<bool, int>> res;
		if (clst.empty()) {
			if (!ast.empty() && !bst.empty()) {
				cout << "No" << endl;
				continue;
			}
			else if (ast.empty()) {
				for (const int& vi : bst) res.emplace_back(true, vi);
			}
			else {
				for (const int& vi : ast) res.emplace_back(false, vi);
			}
		}
		else {
			for (const int& vi : clst) {
				if ((int)(res.size())/2%2 == 0) {
					res.emplace_back(false, vi);
					res.emplace_back(true, vi);
				}
				else {
					res.emplace_back(true, vi);
					res.emplace_back(false, vi);
				}
			}
			auto tmp2 = res.back();
			res.pop_back();
			auto tmp1 = res.back();
			res.pop_back();
			if (!tmp1.first) {
				for (const int& vi : ast) res.emplace_back(false, vi);
				res.push_back(tmp1);
				res.push_back(tmp2);
				for (const int& vi : bst) res.emplace_back(true, vi);
			}
			else {
				for (const int& vi : bst) res.emplace_back(true, vi);
				res.push_back(tmp1);
				res.push_back(tmp2);
				for (const int& vi : ast) res.emplace_back(false, vi);
			}
		}
		cout << "Yes" << endl;
		for (const auto& pi : res) cout << (!pi.first ? "Red" : "Blue") << ' ' << pi.second << endl;
	}
	return 0;
}
0