結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー hourenhouren
提出日時 2023-05-19 21:55:34
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 171 ms / 2,000 ms
コード長 1,691 bytes
コンパイル時間 1,897 ms
コンパイル使用メモリ 176,336 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-06-01 00:44:01
合計ジャッジ時間 25,998 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 51 ms
5,376 KB
testcase_03 AC 64 ms
5,376 KB
testcase_04 AC 59 ms
5,376 KB
testcase_05 AC 59 ms
5,376 KB
testcase_06 AC 62 ms
5,376 KB
testcase_07 AC 59 ms
5,376 KB
testcase_08 AC 90 ms
6,528 KB
testcase_09 AC 86 ms
6,272 KB
testcase_10 AC 74 ms
5,376 KB
testcase_11 AC 90 ms
5,724 KB
testcase_12 AC 82 ms
6,596 KB
testcase_13 AC 85 ms
5,376 KB
testcase_14 AC 100 ms
7,936 KB
testcase_15 AC 69 ms
5,376 KB
testcase_16 AC 77 ms
5,376 KB
testcase_17 AC 79 ms
6,016 KB
testcase_18 AC 143 ms
9,856 KB
testcase_19 AC 125 ms
8,068 KB
testcase_20 AC 81 ms
5,476 KB
testcase_21 AC 81 ms
5,376 KB
testcase_22 AC 141 ms
10,272 KB
testcase_23 AC 83 ms
5,416 KB
testcase_24 AC 162 ms
10,368 KB
testcase_25 AC 150 ms
10,368 KB
testcase_26 AC 82 ms
5,596 KB
testcase_27 AC 152 ms
10,496 KB
testcase_28 AC 94 ms
6,488 KB
testcase_29 AC 100 ms
6,940 KB
testcase_30 AC 150 ms
9,600 KB
testcase_31 AC 81 ms
5,376 KB
testcase_32 AC 80 ms
5,544 KB
testcase_33 AC 170 ms
12,288 KB
testcase_34 AC 168 ms
11,904 KB
testcase_35 AC 136 ms
8,704 KB
testcase_36 AC 92 ms
6,252 KB
testcase_37 AC 137 ms
9,216 KB
testcase_38 AC 42 ms
5,376 KB
testcase_39 AC 65 ms
5,376 KB
testcase_40 AC 59 ms
5,376 KB
testcase_41 AC 71 ms
5,376 KB
testcase_42 AC 132 ms
8,448 KB
testcase_43 AC 132 ms
8,372 KB
testcase_44 AC 171 ms
12,800 KB
testcase_45 AC 46 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using P = pair<ll,ll>;
#define fix(x) fixed << setprecision(x)
#define asc(x) x, vector<x>, greater<x>
#define rep(i, n) for(ll i = 0; i < n; i++)
#define all(x) (x).begin(),(x).end()
template<class T>bool chmin(T&a, const T&b){if(a>b){a=b;return 1;}return 0;}
template<class T>bool chmax(T&a, const T&b){if(a<b){a=b;return 1;}return 0;}
constexpr ll INFLL = (1LL << 62), MOD = 998244353;
constexpr int INF = (1 << 30);

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    int t;
    cin >> t;
    rep(houren,t){
        int n,m,a;
        cin >> n >> m;
        set<int> se;
        vector<int> ok, ng;
        rep(i,n){
            cin >> a;
            se.insert(a);
        }
        rep(i,m){
            cin >> a;
            if(se.count(a)){
                se.erase(a);
                ok.push_back(a);
            }else{
                ng.push_back(a);
            }
        }
        if(se.size()&&ng.size()&&!ok.size()){
            cout << "No\n";
        }else{
            cout << "Yes\n";
            for(int x:se) cout << "Red " << x << '\n';
            if(ok.size()) cout << "Red " << ok[0] << '\n';
            if(ok.size()) cout << "Blue " << ok[0] << '\n';
            for(int x:ng) cout << "Blue " << x << '\n';
            for(int i=1;i<ok.size();i++){
                if(i&1){
                    cout << "Blue " << ok[i] << '\n';
                    cout  << "Red " << ok[i] << '\n';
                }else{
                    cout << "Red " << ok[i] << '\n';
                    cout << "Blue " << ok[i] << '\n';
                }
            }
        }
    }
    return 0;
}
0