結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー hongrockhongrock
提出日時 2023-05-19 21:44:44
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 207 ms / 2,000 ms
コード長 1,901 bytes
コンパイル時間 3,106 ms
コンパイル使用メモリ 217,500 KB
実行使用メモリ 23,828 KB
最終ジャッジ日時 2024-12-21 02:11:02
合計ジャッジ時間 31,014 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 63 ms
5,248 KB
testcase_03 AC 76 ms
5,248 KB
testcase_04 AC 69 ms
5,248 KB
testcase_05 AC 69 ms
5,248 KB
testcase_06 AC 76 ms
5,248 KB
testcase_07 AC 68 ms
5,248 KB
testcase_08 AC 115 ms
12,208 KB
testcase_09 AC 107 ms
8,956 KB
testcase_10 AC 96 ms
10,632 KB
testcase_11 AC 116 ms
11,076 KB
testcase_12 AC 102 ms
12,452 KB
testcase_13 AC 110 ms
10,088 KB
testcase_14 AC 134 ms
13,048 KB
testcase_15 AC 90 ms
7,372 KB
testcase_16 AC 95 ms
7,004 KB
testcase_17 AC 111 ms
11,476 KB
testcase_18 AC 180 ms
21,076 KB
testcase_19 AC 157 ms
19,272 KB
testcase_20 AC 112 ms
16,812 KB
testcase_21 AC 109 ms
16,648 KB
testcase_22 AC 180 ms
21,400 KB
testcase_23 AC 114 ms
16,680 KB
testcase_24 AC 188 ms
21,264 KB
testcase_25 AC 195 ms
21,172 KB
testcase_26 AC 112 ms
16,792 KB
testcase_27 AC 201 ms
21,432 KB
testcase_28 AC 125 ms
17,468 KB
testcase_29 AC 133 ms
18,000 KB
testcase_30 AC 180 ms
20,848 KB
testcase_31 AC 113 ms
16,544 KB
testcase_32 AC 110 ms
16,624 KB
testcase_33 AC 203 ms
23,088 KB
testcase_34 AC 207 ms
22,568 KB
testcase_35 AC 166 ms
19,800 KB
testcase_36 AC 132 ms
17,332 KB
testcase_37 AC 176 ms
20,388 KB
testcase_38 AC 53 ms
5,248 KB
testcase_39 AC 80 ms
5,248 KB
testcase_40 AC 70 ms
5,248 KB
testcase_41 AC 85 ms
5,248 KB
testcase_42 AC 162 ms
19,532 KB
testcase_43 AC 172 ms
19,288 KB
testcase_44 AC 194 ms
23,828 KB
testcase_45 AC 68 ms
15,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#define rep(i, a, n) for(int i=(a); i<(n); ++i)
#define per(i, a, n) for(int i=(a); i>(n); --i)
#define pb emplace_back
#define mp make_pair
#define clr(a, b) memset(a, b, sizeof(a))
#define all(x) (x).begin(),(x).end()
#define lowbit(x) (x & -x)
#define fi first
#define se second
#define lson o<<1
#define rson o<<1|1
#define gmid l[o]+r[o]>>1
 
using ll = long long;
using ull = unsigned long long;
using pii = pair<int,int>;
using pll = pair<ll, ll>;
using ui = unsigned int;
 
constexpr int mod = 998244353;
constexpr int inf = 0x3f3f3f3f;
constexpr double EPS = 1e-8;
const double PI = acos(-1.0);

constexpr int N = 2e5 + 10;

int T, n, m, a[N], b[N];
set<int> st;
vector<pair<string,int>> ans;

bool ok(){
  st.clear();
  ans.clear();
  rep(i, 1, n + 1)  st.insert(a[i]);
  vector<int> same, x;
  rep(i, 1, m + 1){
    if(st.count(b[i])){
      same.pb(b[i]);
      st.erase(b[i]);
    } else {
      x.pb(b[i]);
    }
  }
  if(n && m && !same.size()){
    return 0;
  }
  if(!n){
    rep(i, 1, m + 1)  ans.pb("Blue", b[i]);
    return 1;
  }
  if(!m){
    rep(i, 1, n + 1)  ans.pb("Red", a[i]);
    return 1;
  }
  for(int v : st) ans.pb("Red", v);
  ans.pb("Red", same[0]);
  ans.pb("Blue", same[0]);
  for(int v : x)  ans.pb("Blue", v);
  rep(i, 1, same.size()){
    if(i & 1){
      ans.pb("Blue", same[i]);
      ans.pb("Red", same[i]);
    } else {
      ans.pb("Red", same[i]);
      ans.pb("Blue", same[i]);
    }
  }
  return 1;
}

void _main(){
  cin >> T;
  while(T--){
    cin >> n >> m;
    rep(i, 1, n + 1){
      cin >> a[i];
    }
    rep(i, 1, m + 1){
      cin >> b[i];
    }
    if(ok()){
      cout << "Yes\n";
      for(auto [s, v] : ans){
        cout << s << ' ' << v << '\n';
      }
    } else {
      cout << "No\n";
    }
  }
}

int main(){
  ios::sync_with_stdio(0);
  cin.tie(0); cout.tie(0);
  _main();
  return 0;
}
0