結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー yansi819yansi819
提出日時 2024-04-08 18:16:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 556 ms / 2,000 ms
コード長 1,312 bytes
コンパイル時間 4,922 ms
コンパイル使用メモリ 270,752 KB
実行使用メモリ 22,400 KB
最終ジャッジ日時 2024-10-01 10:02:22
合計ジャッジ時間 46,125 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 274 ms
5,376 KB
testcase_03 AC 276 ms
5,376 KB
testcase_04 AC 269 ms
5,376 KB
testcase_05 AC 260 ms
5,376 KB
testcase_06 AC 274 ms
5,376 KB
testcase_07 AC 224 ms
5,376 KB
testcase_08 AC 334 ms
10,240 KB
testcase_09 AC 339 ms
11,264 KB
testcase_10 AC 314 ms
11,264 KB
testcase_11 AC 388 ms
9,472 KB
testcase_12 AC 288 ms
9,984 KB
testcase_13 AC 475 ms
11,392 KB
testcase_14 AC 357 ms
12,160 KB
testcase_15 AC 267 ms
8,576 KB
testcase_16 AC 381 ms
7,936 KB
testcase_17 AC 347 ms
10,496 KB
testcase_18 AC 493 ms
22,400 KB
testcase_19 AC 474 ms
18,560 KB
testcase_20 AC 549 ms
22,400 KB
testcase_21 AC 534 ms
21,632 KB
testcase_22 AC 534 ms
22,272 KB
testcase_23 AC 517 ms
21,760 KB
testcase_24 AC 510 ms
20,480 KB
testcase_25 AC 523 ms
21,376 KB
testcase_26 AC 516 ms
22,400 KB
testcase_27 AC 533 ms
21,760 KB
testcase_28 AC 514 ms
21,632 KB
testcase_29 AC 532 ms
22,016 KB
testcase_30 AC 508 ms
19,072 KB
testcase_31 AC 509 ms
22,272 KB
testcase_32 AC 511 ms
22,272 KB
testcase_33 AC 556 ms
22,400 KB
testcase_34 AC 494 ms
21,376 KB
testcase_35 AC 490 ms
18,944 KB
testcase_36 AC 539 ms
20,992 KB
testcase_37 AC 486 ms
21,632 KB
testcase_38 AC 380 ms
5,376 KB
testcase_39 AC 510 ms
5,248 KB
testcase_40 AC 400 ms
5,248 KB
testcase_41 AC 403 ms
5,248 KB
testcase_42 AC 497 ms
17,536 KB
testcase_43 AC 492 ms
17,664 KB
testcase_44 AC 534 ms
22,400 KB
testcase_45 AC 539 ms
22,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll = long long;
using ld = long double;
using mint = modint998244353;

void solve() {
  int N, M; cin >> N >> M;
  set<int> r, b, c, d, e;
  for (int i = 1; i <= N; i++) {
    int x; cin >> x;
    r.insert(x);
  }
  for (int i = 1; i <= M; i++) {
    int x; cin >> x;
    b.insert(x);
  }
  set_intersection(r.begin(), r.end(), b.begin(), b.end(), inserter(c, c.end()));
  set_difference(r.begin(), r.end(), c.begin(), c.end(), inserter(d, d.end()));
  set_difference(b.begin(), b.end(), c.begin(), c.end(), inserter(e, e.end()));
  if (c.size() == 0 && (d.size() > 0 && e.size() > 0)) {
    cout << "No" << endl;
    return;
  }
  cout << "Yes" << endl;
  for (auto x: d) {
    cout << "Red " << x << endl;
  }
  if (c.size() > 0) {
    cout << "Red " << *c.begin() << endl;
    cout << "Blue " << *c.begin() << endl;
    c.erase(*c.begin());
  }
  for (auto x: e) {
    cout << "Blue " << x << endl;
  }
  int pos = 0;
  for (auto x: c) {
    if (pos % 2 == 0) {
      cout << "Blue " << x << endl;
      cout << "Red " << x << endl;
    } else {
      cout << "Red " << x << endl;
      cout << "Blue " << x << endl;
    }
    pos++;
  }
}

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