結果

問題 No.2307 [Cherry 5 th Tune *] Cool 46
ユーザー simansiman
提出日時 2023-05-20 08:09:30
言語 Ruby
(3.3.0)
結果
AC  
実行時間 708 ms / 2,000 ms
コード長 1,252 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 46,872 KB
最終ジャッジ日時 2024-12-21 07:17:49
合計ジャッジ時間 42,986 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
12,288 KB
testcase_01 AC 91 ms
12,160 KB
testcase_02 AC 359 ms
13,312 KB
testcase_03 AC 333 ms
15,232 KB
testcase_04 AC 307 ms
14,720 KB
testcase_05 AC 301 ms
15,232 KB
testcase_06 AC 297 ms
15,360 KB
testcase_07 AC 304 ms
16,256 KB
testcase_08 AC 374 ms
28,416 KB
testcase_09 AC 347 ms
21,008 KB
testcase_10 AC 310 ms
26,240 KB
testcase_11 AC 401 ms
28,648 KB
testcase_12 AC 355 ms
29,928 KB
testcase_13 AC 427 ms
28,384 KB
testcase_14 AC 345 ms
33,152 KB
testcase_15 AC 295 ms
22,144 KB
testcase_16 AC 372 ms
23,016 KB
testcase_17 AC 399 ms
25,668 KB
testcase_18 AC 548 ms
41,728 KB
testcase_19 AC 562 ms
46,512 KB
testcase_20 AC 474 ms
40,116 KB
testcase_21 AC 503 ms
40,360 KB
testcase_22 AC 445 ms
40,608 KB
testcase_23 AC 482 ms
40,352 KB
testcase_24 AC 502 ms
44,232 KB
testcase_25 AC 473 ms
41,232 KB
testcase_26 AC 453 ms
39,784 KB
testcase_27 AC 575 ms
41,236 KB
testcase_28 AC 518 ms
41,956 KB
testcase_29 AC 491 ms
42,296 KB
testcase_30 AC 580 ms
45,508 KB
testcase_31 AC 540 ms
40,176 KB
testcase_32 AC 530 ms
40,392 KB
testcase_33 AC 565 ms
39,924 KB
testcase_34 AC 517 ms
40,600 KB
testcase_35 AC 560 ms
46,232 KB
testcase_36 AC 579 ms
39,292 KB
testcase_37 AC 549 ms
42,636 KB
testcase_38 AC 561 ms
12,288 KB
testcase_39 AC 708 ms
12,288 KB
testcase_40 AC 337 ms
12,928 KB
testcase_41 AC 419 ms
13,568 KB
testcase_42 AC 552 ms
46,840 KB
testcase_43 AC 546 ms
46,872 KB
testcase_44 AC 381 ms
33,152 KB
testcase_45 AC 425 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