結果

問題 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  
実行時間 535 ms / 2,000 ms
コード長 1,985 bytes
コンパイル時間 6,491 ms
コンパイル使用メモリ 322,664 KB
実行使用メモリ 17,200 KB
最終ジャッジ日時 2024-06-01 00:59:42
合計ジャッジ時間 43,649 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 260 ms
5,376 KB
testcase_03 AC 259 ms
5,376 KB
testcase_04 AC 255 ms
5,376 KB
testcase_05 AC 263 ms
5,376 KB
testcase_06 AC 253 ms
5,376 KB
testcase_07 AC 209 ms
5,376 KB
testcase_08 AC 293 ms
7,912 KB
testcase_09 AC 275 ms
7,120 KB
testcase_10 AC 255 ms
8,712 KB
testcase_11 AC 333 ms
8,680 KB
testcase_12 AC 251 ms
8,076 KB
testcase_13 AC 449 ms
8,952 KB
testcase_14 AC 313 ms
9,696 KB
testcase_15 AC 228 ms
6,544 KB
testcase_16 AC 350 ms
6,808 KB
testcase_17 AC 301 ms
8,784 KB
testcase_18 AC 432 ms
15,372 KB
testcase_19 AC 455 ms
16,292 KB
testcase_20 AC 451 ms
16,892 KB
testcase_21 AC 452 ms
16,968 KB
testcase_22 AC 429 ms
15,384 KB
testcase_23 AC 462 ms
16,976 KB
testcase_24 AC 445 ms
15,504 KB
testcase_25 AC 435 ms
15,376 KB
testcase_26 AC 434 ms
15,140 KB
testcase_27 AC 468 ms
15,376 KB
testcase_28 AC 493 ms
15,476 KB
testcase_29 AC 463 ms
15,332 KB
testcase_30 AC 469 ms
15,628 KB
testcase_31 AC 440 ms
16,876 KB
testcase_32 AC 448 ms
16,968 KB
testcase_33 AC 456 ms
16,820 KB
testcase_34 AC 473 ms
17,200 KB
testcase_35 AC 465 ms
16,464 KB
testcase_36 AC 441 ms
15,108 KB
testcase_37 AC 443 ms
15,372 KB
testcase_38 AC 379 ms
5,376 KB
testcase_39 AC 535 ms
5,376 KB
testcase_40 AC 391 ms
5,376 KB
testcase_41 AC 398 ms
5,376 KB
testcase_42 AC 431 ms
13,964 KB
testcase_43 AC 440 ms
15,628 KB
testcase_44 AC 453 ms
16,688 KB
testcase_45 AC 440 ms
16,688 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