結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー inkyamaninkyaman
提出日時 2024-04-07 00:50:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 439 ms / 2,000 ms
コード長 1,672 bytes
コンパイル時間 1,390 ms
コンパイル使用メモリ 127,080 KB
実行使用メモリ 12,928 KB
最終ジャッジ日時 2024-10-01 04:17:19
合計ジャッジ時間 37,976 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 228 ms
6,820 KB
testcase_03 AC 228 ms
6,816 KB
testcase_04 AC 222 ms
6,816 KB
testcase_05 AC 221 ms
6,816 KB
testcase_06 AC 224 ms
6,816 KB
testcase_07 AC 188 ms
6,816 KB
testcase_08 AC 255 ms
6,816 KB
testcase_09 AC 261 ms
7,296 KB
testcase_10 AC 246 ms
7,296 KB
testcase_11 AC 303 ms
6,816 KB
testcase_12 AC 227 ms
6,816 KB
testcase_13 AC 382 ms
7,296 KB
testcase_14 AC 267 ms
7,808 KB
testcase_15 AC 221 ms
6,820 KB
testcase_16 AC 303 ms
6,816 KB
testcase_17 AC 275 ms
6,820 KB
testcase_18 AC 395 ms
12,800 KB
testcase_19 AC 414 ms
8,960 KB
testcase_20 AC 426 ms
12,800 KB
testcase_21 AC 421 ms
12,032 KB
testcase_22 AC 397 ms
12,800 KB
testcase_23 AC 430 ms
12,416 KB
testcase_24 AC 428 ms
11,008 KB
testcase_25 AC 404 ms
11,904 KB
testcase_26 AC 439 ms
12,800 KB
testcase_27 AC 412 ms
12,160 KB
testcase_28 AC 422 ms
12,288 KB
testcase_29 AC 418 ms
12,544 KB
testcase_30 AC 395 ms
9,600 KB
testcase_31 AC 439 ms
12,672 KB
testcase_32 AC 435 ms
12,800 KB
testcase_33 AC 431 ms
12,800 KB
testcase_34 AC 419 ms
11,776 KB
testcase_35 AC 426 ms
9,344 KB
testcase_36 AC 439 ms
11,520 KB
testcase_37 AC 431 ms
12,288 KB
testcase_38 AC 308 ms
6,820 KB
testcase_39 AC 426 ms
6,820 KB
testcase_40 AC 328 ms
6,820 KB
testcase_41 AC 339 ms
6,816 KB
testcase_42 AC 423 ms
8,064 KB
testcase_43 AC 401 ms
8,192 KB
testcase_44 AC 399 ms
12,800 KB
testcase_45 AC 409 ms
12,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
#include <queue>
#include <math.h>
#include <cmath>
#include <stack>
#include <map>
#include <set>
#include <numeric>
#include <iomanip>
#include <climits>
#include <functional>
#include <cassert>
#include <tuple>
using namespace std;
using ll = long long;

int T;

int main() {

    cin >> T;
    while(T--) {
        int N, M;
        cin >> N >> M;
        set<int> A,B,P;
        for(int i = 0; i < N; ++i) {
            int a; cin >> a;
            A.insert(a);
        }
        for(int i = 0; i < M; ++i) {
            int b; cin >> b;
            if(A.find(b) != A.end()) {
                A.erase(b);
                P.insert(b);
            }
            else B.insert(b);
        }

        if(N>0 && M>0 && P.empty()) {
            cout << "No" << endl;
            continue;
        } else cout << "Yes" << endl;

        if(!A.empty())for(auto v : A) cout << "Red " << v << endl;
        if(!P.empty()) {
            int x = *P.begin();
            cout << "Red " << x << endl;
            cout << "Blue " << x << endl;
        }
        if(!B.empty())for(auto v : B) cout << "Blue " << v << endl;
        if(P.size()>1) {
            int cnt = 0;
            for(int x : P) {
                if(*P.begin() == x) continue;
                if(cnt%2 == 0) {
                    cout << "Blue " << x << endl;
                    cout << "Red " << x << endl;
                } else {
                    cout << "Red " << x << endl;
                    cout << "Blue " << x << endl;
                }
                cnt++;
            }
        }

    }

}

0