結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー random contestantrandom contestant
提出日時 2023-05-19 22:18:07
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 616 ms / 2,000 ms
コード長 1,474 bytes
コンパイル時間 4,898 ms
コンパイル使用メモリ 271,132 KB
実行使用メモリ 16,256 KB
最終ジャッジ日時 2024-06-01 01:16:44
合計ジャッジ時間 46,808 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 261 ms
5,376 KB
testcase_03 AC 273 ms
5,376 KB
testcase_04 AC 271 ms
5,376 KB
testcase_05 AC 264 ms
5,376 KB
testcase_06 AC 277 ms
5,376 KB
testcase_07 AC 225 ms
5,376 KB
testcase_08 AC 342 ms
8,192 KB
testcase_09 AC 367 ms
8,832 KB
testcase_10 AC 357 ms
8,832 KB
testcase_11 AC 419 ms
7,588 KB
testcase_12 AC 323 ms
7,680 KB
testcase_13 AC 529 ms
8,832 KB
testcase_14 AC 378 ms
9,344 KB
testcase_15 AC 312 ms
6,944 KB
testcase_16 AC 401 ms
6,528 KB
testcase_17 AC 388 ms
7,936 KB
testcase_18 AC 580 ms
16,256 KB
testcase_19 AC 531 ms
11,840 KB
testcase_20 AC 599 ms
16,000 KB
testcase_21 AC 576 ms
15,232 KB
testcase_22 AC 590 ms
16,000 KB
testcase_23 AC 577 ms
15,744 KB
testcase_24 AC 560 ms
14,080 KB
testcase_25 AC 597 ms
15,016 KB
testcase_26 AC 583 ms
16,000 KB
testcase_27 AC 597 ms
15,488 KB
testcase_28 AC 602 ms
15,232 KB
testcase_29 AC 581 ms
15,744 KB
testcase_30 AC 548 ms
12,664 KB
testcase_31 AC 582 ms
16,000 KB
testcase_32 AC 616 ms
16,128 KB
testcase_33 AC 615 ms
16,000 KB
testcase_34 AC 571 ms
14,848 KB
testcase_35 AC 533 ms
12,492 KB
testcase_36 AC 567 ms
14,416 KB
testcase_37 AC 583 ms
15,488 KB
testcase_38 AC 365 ms
5,376 KB
testcase_39 AC 510 ms
5,376 KB
testcase_40 AC 397 ms
5,376 KB
testcase_41 AC 388 ms
5,376 KB
testcase_42 AC 496 ms
10,804 KB
testcase_43 AC 499 ms
10,808 KB
testcase_44 AC 529 ms
16,128 KB
testcase_45 AC 534 ms
16,000 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