結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー AnchorBluesAnchorBlues
提出日時 2023-09-29 14:58:20
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 593 ms / 2,000 ms
コード長 2,735 bytes
コンパイル時間 2,476 ms
コンパイル使用メモリ 211,820 KB
実行使用メモリ 26,752 KB
最終ジャッジ日時 2024-07-22 09:10:30
合計ジャッジ時間 42,426 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 205 ms
5,376 KB
testcase_03 AC 215 ms
5,376 KB
testcase_04 AC 209 ms
5,376 KB
testcase_05 AC 209 ms
5,376 KB
testcase_06 AC 208 ms
5,376 KB
testcase_07 AC 171 ms
5,376 KB
testcase_08 AC 288 ms
9,600 KB
testcase_09 AC 271 ms
7,296 KB
testcase_10 AC 218 ms
7,424 KB
testcase_11 AC 349 ms
10,880 KB
testcase_12 AC 215 ms
6,784 KB
testcase_13 AC 415 ms
8,192 KB
testcase_14 AC 283 ms
7,808 KB
testcase_15 AC 193 ms
5,888 KB
testcase_16 AC 329 ms
6,144 KB
testcase_17 AC 281 ms
9,344 KB
testcase_18 AC 431 ms
12,800 KB
testcase_19 AC 533 ms
24,192 KB
testcase_20 AC 435 ms
12,928 KB
testcase_21 AC 488 ms
15,104 KB
testcase_22 AC 450 ms
12,928 KB
testcase_23 AC 458 ms
13,952 KB
testcase_24 AC 523 ms
18,048 KB
testcase_25 AC 493 ms
15,488 KB
testcase_26 AC 418 ms
12,800 KB
testcase_27 AC 593 ms
14,336 KB
testcase_28 AC 478 ms
14,592 KB
testcase_29 AC 478 ms
13,184 KB
testcase_30 AC 559 ms
22,272 KB
testcase_31 AC 452 ms
12,800 KB
testcase_32 AC 442 ms
12,800 KB
testcase_33 AC 479 ms
12,800 KB
testcase_34 AC 517 ms
15,872 KB
testcase_35 AC 534 ms
22,656 KB
testcase_36 AC 492 ms
16,768 KB
testcase_37 AC 488 ms
14,464 KB
testcase_38 AC 183 ms
5,376 KB
testcase_39 AC 296 ms
5,376 KB
testcase_40 AC 324 ms
5,376 KB
testcase_41 AC 390 ms
5,376 KB
testcase_42 AC 555 ms
26,752 KB
testcase_43 AC 569 ms
26,752 KB
testcase_44 AC 482 ms
12,800 KB
testcase_45 AC 460 ms
12,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;
template <typename T>
using min_priority_queue = priority_queue<T, vector<T>, greater<T>>;
using pii = pair<int, int>;
using pll = pair<ll, ll>;
using Graph = vector<vector<int>>;

const ll INF = 1LL << 60;

template <class T>
void chmax(T& a, T b) {
    if (b > a) a = b;
}
template <class T>
void chmin(T& a, T b) {
    if (b < a) a = b;
}

template <typename T, typename S>
std::ostream& operator<<(std::ostream& os, const pair<T, S>& x) noexcept {
    return os << "(" << x.first << ", " << x.second << ")";
}

template <typename T>
void print_vector(vector<T> a) {
    cout << '[';
    for (int i = 0; i < a.size(); i++) {
        cout << a[i];
        if (i != a.size() - 1) {
            cout << ", ";
        }
    }
    cout << ']' << endl;
}

void solve() {
    ll N, M;
    cin >> N >> M;
    set<ll> A, B, AB;
    for (int i = 0; i < N; i++) {
        ll a;
        cin >> a;
        A.insert(a);
    }
    for (int j = 0; j < M; j++) {
        ll b;
        cin >> b;
        B.insert(b);
    }
    for (auto& v : A) {
        if (B.count(v)) AB.insert(v);
    }
    // std::cout << N << ' ' << M << "\n";
    // std::cout << A.size() << ' ' << B.size() << endl;
    // std::cout << AB.size() << "\n";
    if (AB.size() == 0 && A.size() > 0 && B.size() > 0) {
        std::cout << "No"
                  << "\n";
        return;
    }
    set<ll> to_be_removed_A, to_be_removed_B;
    for (auto& v : A) {
        if (AB.count(v)) {
            to_be_removed_A.insert(v);
        }
    }
    for (auto& v : B) {
        if (AB.count(v)) {
            to_be_removed_B.insert(v);
        }
    }
    for (auto& v : to_be_removed_A) {
        A.erase(v);
    }
    for (auto& v : to_be_removed_B) {
        B.erase(v);
    }
    // ここから答え出力
    std::cout << "Yes"
              << "\n";
    for (auto& v : A) {
        std::cout << "Red" << ' ' << v << endl;
    }
    if (AB.size() > 0) {
        auto it = AB.begin();
        auto u = *it;
        std::cout << "Red" << ' ' << u << endl;
        std::cout << "Blue" << ' ' << u << endl;
        AB.erase(it);
    }
    for (auto& v : B) {
        std::cout << "Blue" << ' ' << v << endl;
    }
    bool blue = true;
    for (auto& v : AB) {
        if (blue) {
            std::cout << "Blue" << ' ' << v << endl;
            std::cout << "Red" << ' ' << v << endl;
        } else {
            std::cout << "Red" << ' ' << v << endl;
            std::cout << "Blue" << ' ' << v << endl;
        }
        blue = blue ^ true;
    }
}

int main() {
    ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    int T;
    cin >> T;
    while (T--) {
        solve();
    }
    return 0;
}
0