結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー CoCo_Japan_panCoCo_Japan_pan
提出日時 2023-05-19 21:51:39
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,579 bytes
コンパイル時間 3,342 ms
コンパイル使用メモリ 224,496 KB
実行使用メモリ 7,060 KB
最終ジャッジ日時 2023-08-23 02:56:57
合計ジャッジ時間 20,032 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 42 ms
4,380 KB
testcase_39 AC 64 ms
4,376 KB
testcase_40 AC 53 ms
4,376 KB
testcase_41 AC 55 ms
4,376 KB
testcase_42 AC 63 ms
5,964 KB
testcase_43 AC 63 ms
5,928 KB
testcase_44 AC 60 ms
4,376 KB
testcase_45 AC 61 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#line 2 "/home/cocojapanpan/Procon_CPP/proconLibrary/lib/template/procon.hpp"

#ifndef DEBUG
// 提出時にassertはオフ
#ifndef NDEBUG
#define NDEBUG
#endif
// 定数倍高速化
#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
#endif

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

#define ALL(x) (x).begin(), (x).end()
template <class T>
using vec = vector<T>;
template <class T, class S>
inline bool chmax(T &a, const S &b) {
    return (a < b ? a = b, 1 : 0);
}
template <class T, class S>
inline bool chmin(T &a, const S &b) {
    return (a > b ? a = b, 1 : 0);
}
template <class T>
constexpr T INF = 1'000'000'000;
template <>
constexpr int INF<int> = 1'000'000'000;
template <>
constexpr ll INF<ll> = ll(INF<int>) * INF<int> * 2;
#line 2 "main.cpp"

void solve() {
    int N, M;
    cin >> N >> M;
    vec<int> A(N), B(M);
    for(int &a : A) cin >> a;
    for(int &b : B) cin >> b;
    sort(ALL(A)); sort(ALL(B));
    int A_id = 0, B_id = 0;
    if(M == 0) {
        cout << "Yes\n";
        for(int a : A) {
            cout << "Red " << a << "\n";
        }
        return;
    }
    if(N == 0) {
        cout << "Yes\n";
        for(int b : B) {
            cout << "Blue " << b << "\n";
        }
        return;
    }
    bool red = true;
    vec<pair<bool, int>> ans;
    if(B[0] < A[0]) {
        ans.push_back({false, B[0]});
        red = false;
        B_id = 1;
    } else {
        ans.push_back({true, A[0]});
        A_id = 1;
    }
    while(A_id < N || B_id < M) {
        if(red) {
            if(B[B_id] == A[A_id - 1]) {
                ans.push_back({false, B[B_id]});
                red = false;
                ++B_id;
            } else {
                if(A_id == N) break;
                ans.push_back({true, A[A_id]});
                ++A_id;
            }
        } else {
            if(A[A_id] == B[B_id - 1]) {
                red = true;
                ans.push_back({true, A[A_id]});
                ++A_id;
            } else {
                if(B_id == M) break;
                ans.push_back({false, B[B_id]});
                ++B_id;
            }
        }
    }
    if(A_id < N || B_id < M) {
        cout << "No\n";
        return;
    }
    cout << "Yes\n";
    for(pair<bool, int> p : ans) {
        if(p.first) cout << "Red ";
        else cout << "Blue ";
        cout << p.second << "\n";
    }
}

int main() {
    ios_base::sync_with_stdio(false);
    cin.tie(nullptr);
    int T;
    cin >> T;
    for(int i = 0; i < T; i++) {
        solve();
    }
}
0