結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー simansiman
提出日時 2023-05-20 08:09:30
言語 Ruby
(3.3.0)
結果
AC  
実行時間 684 ms / 2,000 ms
コード長 1,252 bytes
コンパイル時間 59 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 46,720 KB
最終ジャッジ日時 2024-06-01 04:33:40
合計ジャッジ時間 40,171 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
12,160 KB
testcase_01 AC 90 ms
12,288 KB
testcase_02 AC 314 ms
13,312 KB
testcase_03 AC 287 ms
15,360 KB
testcase_04 AC 295 ms
14,720 KB
testcase_05 AC 300 ms
15,228 KB
testcase_06 AC 297 ms
15,488 KB
testcase_07 AC 267 ms
16,384 KB
testcase_08 AC 332 ms
28,800 KB
testcase_09 AC 327 ms
21,040 KB
testcase_10 AC 306 ms
26,368 KB
testcase_11 AC 405 ms
28,232 KB
testcase_12 AC 308 ms
29,940 KB
testcase_13 AC 416 ms
28,616 KB
testcase_14 AC 333 ms
33,408 KB
testcase_15 AC 298 ms
21,888 KB
testcase_16 AC 370 ms
23,024 KB
testcase_17 AC 341 ms
25,660 KB
testcase_18 AC 439 ms
41,728 KB
testcase_19 AC 532 ms
46,632 KB
testcase_20 AC 463 ms
40,276 KB
testcase_21 AC 477 ms
40,532 KB
testcase_22 AC 443 ms
40,588 KB
testcase_23 AC 472 ms
40,352 KB
testcase_24 AC 496 ms
44,272 KB
testcase_25 AC 466 ms
40,980 KB
testcase_26 AC 454 ms
39,912 KB
testcase_27 AC 462 ms
41,356 KB
testcase_28 AC 470 ms
41,992 KB
testcase_29 AC 468 ms
42,552 KB
testcase_30 AC 520 ms
45,544 KB
testcase_31 AC 457 ms
40,268 KB
testcase_32 AC 456 ms
40,276 KB
testcase_33 AC 437 ms
39,960 KB
testcase_34 AC 467 ms
40,764 KB
testcase_35 AC 527 ms
46,224 KB
testcase_36 AC 496 ms
39,332 KB
testcase_37 AC 461 ms
42,660 KB
testcase_38 AC 537 ms
12,288 KB
testcase_39 AC 684 ms
12,288 KB
testcase_40 AC 322 ms
13,184 KB
testcase_41 AC 394 ms
13,568 KB
testcase_42 AC 534 ms
46,720 KB
testcase_43 AC 529 ms
46,624 KB
testcase_44 AC 366 ms
33,152 KB
testcase_45 AC 370 ms
33,152 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

T = gets.to_i

T.times do
  n, m = gets.split.map(&:to_i)
  a = gets.split.map(&:to_i).sort
  b = gets.split.map(&:to_i).sort

  if n == 0
    puts 'Yes'
    b.each do |x|
      puts "Blue #{x}"
    end
  elsif m == 0
    puts 'Yes'
    a.each do |x|
      puts "Red #{x}"
    end
  else
    a_cnt = a.tally
    b_cnt = b.tally
    c = a & b
    c_cnt = c.tally

    if c.empty?
      puts 'No'
    else
      puts 'Yes'

      t = 0
      ans = []

      c.each do |x|
        cnt = [a_cnt[x], b_cnt[x]].min

        cnt.times do
          if t.even?
            ans << "Red #{x}"
            ans << "Blue #{x}"
          else
            ans << "Blue #{x}"
            ans << "Red #{x}"
          end

          t += 1
        end
      end

      if t.even?
        l1, l2 = ans.pop(2)

        b.each do |x|
          next if c_cnt[x]

          ans << "Blue #{x}"
        end

        ans << l1
        ans << l2

        a.each do |x|
          next if c_cnt[x]

          ans << "Red #{x}"
        end
      else
        b.each do |x|
          next if c_cnt[x]

          ans << "Blue #{x}"
        end

        a.each do |x|
          next if c_cnt[x]

          ans.unshift("Red #{x}")
        end
      end

      puts ans
    end
  end
end
0