結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー KKT89KKT89
提出日時 2023-05-19 22:59:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 156 ms / 2,000 ms
コード長 2,056 bytes
コンパイル時間 3,319 ms
コンパイル使用メモリ 222,672 KB
実行使用メモリ 14,052 KB
最終ジャッジ日時 2024-12-21 03:33:44
合計ジャッジ時間 29,597 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,248 KB
testcase_02 AC 61 ms
5,248 KB
testcase_03 AC 75 ms
5,248 KB
testcase_04 AC 67 ms
6,816 KB
testcase_05 AC 64 ms
5,248 KB
testcase_06 AC 69 ms
5,248 KB
testcase_07 AC 65 ms
6,816 KB
testcase_08 AC 93 ms
6,816 KB
testcase_09 AC 92 ms
6,820 KB
testcase_10 AC 79 ms
6,816 KB
testcase_11 AC 96 ms
6,820 KB
testcase_12 AC 88 ms
7,556 KB
testcase_13 AC 90 ms
5,248 KB
testcase_14 AC 95 ms
8,448 KB
testcase_15 AC 74 ms
5,248 KB
testcase_16 AC 82 ms
5,248 KB
testcase_17 AC 83 ms
6,528 KB
testcase_18 AC 130 ms
11,216 KB
testcase_19 AC 130 ms
9,088 KB
testcase_20 AC 92 ms
6,264 KB
testcase_21 AC 92 ms
6,348 KB
testcase_22 AC 129 ms
12,300 KB
testcase_23 AC 92 ms
6,212 KB
testcase_24 AC 144 ms
11,776 KB
testcase_25 AC 143 ms
11,360 KB
testcase_26 AC 95 ms
6,512 KB
testcase_27 AC 152 ms
12,408 KB
testcase_28 AC 104 ms
7,144 KB
testcase_29 AC 108 ms
7,692 KB
testcase_30 AC 152 ms
10,744 KB
testcase_31 AC 92 ms
6,376 KB
testcase_32 AC 92 ms
6,320 KB
testcase_33 AC 149 ms
14,052 KB
testcase_34 AC 156 ms
13,532 KB
testcase_35 AC 133 ms
9,536 KB
testcase_36 AC 104 ms
7,164 KB
testcase_37 AC 139 ms
10,484 KB
testcase_38 AC 51 ms
5,248 KB
testcase_39 AC 78 ms
5,248 KB
testcase_40 AC 54 ms
5,248 KB
testcase_41 AC 85 ms
5,248 KB
testcase_42 AC 132 ms
9,284 KB
testcase_43 AC 133 ms
9,344 KB
testcase_44 AC 52 ms
5,248 KB
testcase_45 AC 55 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("Ofast")
#include <bits/stdc++.h>
using namespace std;
typedef long long int ll;
typedef unsigned long long int ull;

mt19937_64 rng(chrono::steady_clock::now().time_since_epoch().count());
ll myRand(ll B) {
    return (ull)rng() % B;
}
inline double time() {
    return static_cast<long double>(chrono::duration_cast<chrono::nanoseconds>(chrono::steady_clock::now().time_since_epoch()).count()) * 1e-9;
}

void slv() {
    int n,m; cin >> n >> m;
    vector<int> a(n), b(m);
    for (int i = 0; i < n; ++i) {
        cin >> a[i];
    }
    for (int i = 0; i < m; ++i) {
        cin >> b[i];
    }
    if (m == 0) {
        cout << "Yes" << "\n";
        for (int i = 0; i < n; ++i) {
            cout << "Red" << " " << a[i] << "\n";
        }
        return;
    }
    if (n == 0) {
        cout << "Yes" << "\n";
        for (int i = 0; i < m; ++i) {
            cout << "Blue" << " " << b[i] << "\n";
        }
        return;
    }
    vector<int> R,B,RB;
    set<int> st;
    for (int i = 0; i < n; ++i) {
        st.insert(a[i]);
    }
    for (int i = 0; i < m; ++i) {
        if (st.find(b[i]) != st.end()) {
            RB.push_back(b[i]);
            st.erase(b[i]);
        }
        else {
            B.push_back(b[i]);
        }
    }
    for (int i : st) {
        R.push_back(i);
    }

    if (RB.size() == 0) {
        cout << "No" << "\n";
        return;
    }
    cout << "Yes" << "\n";
    for (int i: R) {
        cout << "Red " << i << "\n";
    }
    cout << "Red " << RB[0] << "\n";
    cout << "Blue " << RB[0] << "\n";
    for (int i: B) {
        cout << "Blue " << i << "\n";
    }
    for (int i = 1; i < RB.size(); ++i) {
        if (i%2 == 1) {
            cout << "Blue " << RB[i] << "\n";
            cout << "Red " << RB[i] << "\n";
        }
        else {
            cout << "Red " << RB[i] << "\n";
            cout << "Blue " << RB[i] << "\n";
        }
    }
}

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    int q; cin >> q;
    while (q--) {
        slv();
    }
}
0