結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー wanuiwanui
提出日時 2023-05-19 22:09:25
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 220 ms / 2,000 ms
コード長 2,793 bytes
コンパイル時間 2,473 ms
コンパイル使用メモリ 208,644 KB
実行使用メモリ 23,160 KB
最終ジャッジ日時 2024-12-21 02:51:34
合計ジャッジ時間 30,818 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 85 ms
5,248 KB
testcase_03 AC 100 ms
5,248 KB
testcase_04 AC 99 ms
5,248 KB
testcase_05 AC 99 ms
5,248 KB
testcase_06 AC 105 ms
5,248 KB
testcase_07 AC 95 ms
5,248 KB
testcase_08 AC 117 ms
9,116 KB
testcase_09 AC 117 ms
10,404 KB
testcase_10 AC 120 ms
10,580 KB
testcase_11 AC 122 ms
8,976 KB
testcase_12 AC 116 ms
9,148 KB
testcase_13 AC 142 ms
10,164 KB
testcase_14 AC 124 ms
12,048 KB
testcase_15 AC 112 ms
7,568 KB
testcase_16 AC 119 ms
7,776 KB
testcase_17 AC 119 ms
9,504 KB
testcase_18 AC 163 ms
19,728 KB
testcase_19 AC 140 ms
16,916 KB
testcase_20 AC 174 ms
23,040 KB
testcase_21 AC 166 ms
19,800 KB
testcase_22 AC 177 ms
19,604 KB
testcase_23 AC 181 ms
20,184 KB
testcase_24 AC 163 ms
18,324 KB
testcase_25 AC 168 ms
19,476 KB
testcase_26 AC 161 ms
19,208 KB
testcase_27 AC 175 ms
19,732 KB
testcase_28 AC 171 ms
19,068 KB
testcase_29 AC 169 ms
19,692 KB
testcase_30 AC 155 ms
17,044 KB
testcase_31 AC 174 ms
23,160 KB
testcase_32 AC 186 ms
23,000 KB
testcase_33 AC 174 ms
21,940 KB
testcase_34 AC 181 ms
19,900 KB
testcase_35 AC 162 ms
17,552 KB
testcase_36 AC 169 ms
18,444 KB
testcase_37 AC 171 ms
19,604 KB
testcase_38 AC 72 ms
5,248 KB
testcase_39 AC 111 ms
5,248 KB
testcase_40 AC 106 ms
5,248 KB
testcase_41 AC 98 ms
5,248 KB
testcase_42 AC 141 ms
16,916 KB
testcase_43 AC 138 ms
16,920 KB
testcase_44 AC 177 ms
21,692 KB
testcase_45 AC 220 ms
21,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
// clang-format off
using namespace std; using ll=long long; using ull=unsigned long long; using pll=pair<ll,ll>; const ll INF=4e18;
void print0(){}; template<typename H,typename... T> void print0(H h,T... t){cout<<h;print0(t...);}
void print(){print0("\n");}; template<typename H,typename... T>void print(H h,T... t){print0(h);if(sizeof...(T)>0)print0(" ");print(t...);}
void perr0(){}; template<typename H,typename... T> void perr0(H h,T... t){cerr<<h;perr0(t...);}
void perr(){perr0("\n");}; template<typename H,typename... T>void perr(H h,T... t){perr0(h);if(sizeof...(T)>0)perr0(" ");perr(t...);}
void ioinit() { cout<<fixed<<setprecision(15); cerr<<fixed<<setprecision(6); ios_base::sync_with_stdio(0); cin.tie(0); }
#define debug1(a) { cerr<<#a<<":"<<a<<endl; }
#define debug2(a,b) { cerr<<#a<<":"<<a<<" "<<#b<<":"<<b<<endl; }
#define debug3(a,b,c) { cerr<<#a<<":"<<a<<" "<<#b<<":"<<b<<" "<<#c<<":"<<c<<endl; }
#define debug4(a,b,c,d) { cerr<<#a<<":"<<a<<" "<<#b<<":"<<b<<" "<<#c<<":"<<c<<" "<<#d<<":"<<d<<endl; }
// clang-format on
void solve() {
    ll N, M;
    cin >> N >> M;
    unordered_set<ll> A;
    unordered_set<ll> B;

    for (ll i = 0; i < N; i++) {
        ll x;
        cin >> x;
        A.insert(x);
    }
    for (ll i = 0; i < M; i++) {
        ll x;
        cin >> x;
        B.insert(x);
    }
    unordered_set<ll> p;
    unordered_set<ll> aa;
    unordered_set<ll> bb;
    for (auto x : A) {
        if (B.count(x)) {
            p.insert(x);
        } else {
            aa.insert(x);
        }
    }
    for (auto x : B) {
        if (A.count(x)) {
            ;
        } else {
            bb.insert(x);
        }
    }
    if (p.size() == 0) {
        if (aa.size() == 0) {
            print("Yes");
            for (auto x : bb) {
                print("Blue", x);
            }
        } else if (bb.size() == 0) {
            print("Yes");
            for (auto x : aa) {
                print("Red", x);
            }
        } else {
            print("No");
        }

    } else {
        print("Yes");
        for (auto x : aa) {
            print("Red", x);
        }
        ll xp = -1;
        for (auto x : p) {
            xp = x;
            print("Red", x);
            print("Blue", x);
            break;
        }
        for (auto x : bb) {
            print("Blue", x);
        }
        bool blue = true;
        for (auto x : p) {
            if (x == xp) continue;
            if (blue) {
                print("Blue", x);
                print("Red", x);
            } else {
                print("Red", x);
                print("Blue", x);
            }
            blue = !blue;
        }
    }
}
int main() {
    ioinit();
    ll T;
    cin >> T;
    while (T--) {
        solve();
    }
    return 0;
}
0