結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー hongrockhongrock
提出日時 2023-05-19 21:44:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 184 ms / 2,000 ms
コード長 1,901 bytes
コンパイル時間 2,463 ms
コンパイル使用メモリ 217,968 KB
実行使用メモリ 24,096 KB
最終ジャッジ日時 2024-06-01 00:32:42
合計ジャッジ時間 27,191 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 55 ms
6,940 KB
testcase_03 AC 68 ms
6,940 KB
testcase_04 AC 63 ms
6,940 KB
testcase_05 AC 63 ms
6,944 KB
testcase_06 AC 66 ms
6,940 KB
testcase_07 AC 62 ms
6,944 KB
testcase_08 AC 102 ms
12,852 KB
testcase_09 AC 94 ms
8,956 KB
testcase_10 AC 85 ms
11,404 KB
testcase_11 AC 105 ms
11,292 KB
testcase_12 AC 93 ms
13,100 KB
testcase_13 AC 98 ms
10,096 KB
testcase_14 AC 106 ms
13,568 KB
testcase_15 AC 75 ms
7,368 KB
testcase_16 AC 87 ms
7,256 KB
testcase_17 AC 89 ms
11,860 KB
testcase_18 AC 149 ms
21,944 KB
testcase_19 AC 135 ms
19,596 KB
testcase_20 AC 97 ms
16,792 KB
testcase_21 AC 96 ms
16,672 KB
testcase_22 AC 169 ms
21,968 KB
testcase_23 AC 96 ms
17,988 KB
testcase_24 AC 159 ms
21,544 KB
testcase_25 AC 152 ms
21,536 KB
testcase_26 AC 100 ms
17,036 KB
testcase_27 AC 169 ms
21,620 KB
testcase_28 AC 114 ms
17,892 KB
testcase_29 AC 120 ms
18,352 KB
testcase_30 AC 169 ms
21,728 KB
testcase_31 AC 97 ms
17,456 KB
testcase_32 AC 95 ms
18,012 KB
testcase_33 AC 172 ms
24,096 KB
testcase_34 AC 184 ms
23,268 KB
testcase_35 AC 159 ms
20,272 KB
testcase_36 AC 109 ms
17,824 KB
testcase_37 AC 147 ms
20,992 KB
testcase_38 AC 48 ms
6,940 KB
testcase_39 AC 75 ms
6,940 KB
testcase_40 AC 63 ms
6,944 KB
testcase_41 AC 80 ms
6,940 KB
testcase_42 AC 154 ms
19,552 KB
testcase_43 AC 145 ms
19,676 KB
testcase_44 AC 164 ms
23,740 KB
testcase_45 AC 59 ms
17,008 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