結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー random contestantrandom contestant
提出日時 2023-05-19 22:18:07
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 646 ms / 2,000 ms
コード長 1,474 bytes
コンパイル時間 5,037 ms
コンパイル使用メモリ 271,132 KB
実行使用メモリ 16,128 KB
最終ジャッジ日時 2024-12-21 03:04:45
合計ジャッジ時間 48,249 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 265 ms
5,248 KB
testcase_03 AC 284 ms
5,248 KB
testcase_04 AC 275 ms
5,248 KB
testcase_05 AC 267 ms
5,248 KB
testcase_06 AC 282 ms
5,248 KB
testcase_07 AC 236 ms
5,248 KB
testcase_08 AC 350 ms
8,096 KB
testcase_09 AC 363 ms
8,832 KB
testcase_10 AC 361 ms
8,704 KB
testcase_11 AC 450 ms
7,552 KB
testcase_12 AC 326 ms
7,808 KB
testcase_13 AC 544 ms
8,832 KB
testcase_14 AC 394 ms
9,088 KB
testcase_15 AC 324 ms
6,912 KB
testcase_16 AC 418 ms
6,400 KB
testcase_17 AC 378 ms
7,936 KB
testcase_18 AC 646 ms
16,000 KB
testcase_19 AC 536 ms
11,964 KB
testcase_20 AC 629 ms
16,128 KB
testcase_21 AC 608 ms
15,128 KB
testcase_22 AC 617 ms
16,128 KB
testcase_23 AC 601 ms
15,744 KB
testcase_24 AC 585 ms
14,080 KB
testcase_25 AC 586 ms
15,104 KB
testcase_26 AC 608 ms
16,128 KB
testcase_27 AC 598 ms
15,488 KB
testcase_28 AC 595 ms
15,360 KB
testcase_29 AC 607 ms
15,872 KB
testcase_30 AC 542 ms
12,664 KB
testcase_31 AC 617 ms
15,872 KB
testcase_32 AC 600 ms
16,128 KB
testcase_33 AC 601 ms
15,872 KB
testcase_34 AC 589 ms
14,784 KB
testcase_35 AC 532 ms
12,492 KB
testcase_36 AC 568 ms
14,412 KB
testcase_37 AC 590 ms
15,360 KB
testcase_38 AC 362 ms
5,248 KB
testcase_39 AC 520 ms
5,248 KB
testcase_40 AC 404 ms
5,248 KB
testcase_41 AC 404 ms
5,248 KB
testcase_42 AC 518 ms
10,684 KB
testcase_43 AC 532 ms
10,680 KB
testcase_44 AC 560 ms
15,872 KB
testcase_45 AC 563 ms
16,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// #define _GLIBCXX_DEBUG
#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using ll = long long;
#define rep(i,n) for (ll i = 0; i < (n); ++i)
using vl = vector<ll>;
using vvl = vector<vl>;
using P = pair<ll,ll>;
#define pb push_back
#define int long long
#define double long double
#define INF (ll) 3e18
// Ctrl + Shift + B コンパイル
// Ctrl + C 中断
// ./m 実行


void solve(){
  int n, m; cin >> n >> m;
  map<int, int> mp;
  rep(i, n) {
    int x; cin >> x;
    mp[x] += 1;
  }
  rep(i,m) {
    int x; cin >> x;
    mp[x] += 2;
  }
  if (n == 0 || m == 0){
    cout << "Yes" << endl;
    for(auto [x, ab] : mp){
      if (ab & 1) cout << "Red " << x << endl;
      if (ab & 2) cout << "Blue " << x << endl;
    }
    return;
  }
  vl three;
  for(auto [x, ab] : mp) if (ab == 3) three.push_back(x);
  if (!three.size()) {cout << "No" << endl; return;}
  cout << "Yes" << endl;
  for(auto [x, ab] : mp){
    if (ab == 1) cout << "Red " << x << endl;
  }
  cout << "Red " << three[0] << endl;
  cout << "Blue " << three[0] << endl;
  for(auto [x, ab] : mp){
    if (ab == 2) cout << "Blue " << x << endl;
  }
  int c = 1;
  auto teban = [&]() -> string {
    if (c) return "Blue ";
    else return "Red ";
  };
  for(int i = 1; i < three.size(); i++){
    cout << teban() << three[i] << endl;
    c ^= 1;
    cout << teban() << three[i] << endl;
  }
}

signed main(){
  int t; cin >> t;
  rep(_,t){
    solve();
  }
}
0