結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-06-18 01:10:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 685 ms / 2,000 ms
コード長 1,457 bytes
コンパイル時間 2,642 ms
コンパイル使用メモリ 214,860 KB
実行使用メモリ 29,624 KB
最終ジャッジ日時 2024-06-25 13:49:25
合計ジャッジ時間 49,197 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 270 ms
5,376 KB
testcase_03 AC 283 ms
5,376 KB
testcase_04 AC 277 ms
5,376 KB
testcase_05 AC 265 ms
5,376 KB
testcase_06 AC 282 ms
5,376 KB
testcase_07 AC 232 ms
5,376 KB
testcase_08 AC 365 ms
12,232 KB
testcase_09 AC 351 ms
13,856 KB
testcase_10 AC 383 ms
14,160 KB
testcase_11 AC 407 ms
11,440 KB
testcase_12 AC 329 ms
12,732 KB
testcase_13 AC 517 ms
14,084 KB
testcase_14 AC 382 ms
15,244 KB
testcase_15 AC 292 ms
10,220 KB
testcase_16 AC 395 ms
9,432 KB
testcase_17 AC 389 ms
12,288 KB
testcase_18 AC 565 ms
29,004 KB
testcase_19 AC 558 ms
19,180 KB
testcase_20 AC 672 ms
29,192 KB
testcase_21 AC 632 ms
27,208 KB
testcase_22 AC 645 ms
29,624 KB
testcase_23 AC 611 ms
27,992 KB
testcase_24 AC 628 ms
24,636 KB
testcase_25 AC 658 ms
26,444 KB
testcase_26 AC 664 ms
29,104 KB
testcase_27 AC 685 ms
28,468 KB
testcase_28 AC 644 ms
27,860 KB
testcase_29 AC 637 ms
29,248 KB
testcase_30 AC 544 ms
20,872 KB
testcase_31 AC 617 ms
29,096 KB
testcase_32 AC 634 ms
29,100 KB
testcase_33 AC 660 ms
28,896 KB
testcase_34 AC 609 ms
26,700 KB
testcase_35 AC 559 ms
20,680 KB
testcase_36 AC 684 ms
26,080 KB
testcase_37 AC 661 ms
27,364 KB
testcase_38 AC 391 ms
5,376 KB
testcase_39 AC 499 ms
5,376 KB
testcase_40 AC 385 ms
5,376 KB
testcase_41 AC 372 ms
5,376 KB
testcase_42 AC 478 ms
16,936 KB
testcase_43 AC 550 ms
16,932 KB
testcase_44 AC 545 ms
28,848 KB
testcase_45 AC 555 ms
28,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;

void solve(){
    ll N, M;
    cin >> N >> M;
    vector<ll> A(N), B(M);
    vector<ll> r, b, p;
    for (int i=0; i<N; i++) cin >> A[i];
    for (int i=0; i<M; i++) cin >> B[i];

    map<ll, vector<ll>> mp;
    for (int i=0; i<N; i++) mp[A[i]].push_back(0);
    for (int i=0; i<M; i++) mp[B[i]].push_back(1);

    for (auto &[x, y] : mp){
        if (y.size() == 1){
            if (y[0] == 0) r.push_back(x);
            else b.push_back(x);
        }
        else if (y.size() == 2) p.push_back(x);
    }

    if (N == 0 || M == 0){
        cout << "Yes" << endl;
        for (int i=0; i<N; i++) cout << "Red " << A[i] << endl;
        for (int i=0; i<M; i++) cout << "Blue " << B[i] << endl;
        return;
    }
    if (p.size() == 0){
        cout << "No" << endl;
        return;
    }
    
    cout << "Yes" << endl;
    for (auto x : r) cout << "Red " << x << endl;
    cout << "Red " << p[0] << endl;
    cout << "Blue " << p[0] << endl;
    for (auto x : b) cout << "Blue " << x << endl;
    for (int i=1; i<p.size(); i++){
        if (i % 2 == 1){
            cout << "Blue " << p[i] << endl;
            cout << "Red " << p[i] << endl;
        }
        else{
            cout << "Red " << p[i] << endl;
            cout << "Blue " << p[i] << endl;
        }
    }
}

int main(){

    int T;
    cin >> T;
    while(T){
        T--;
        solve();
    }

    return 0;
}
0