結果

問題 No.1650 Moving Coins
ユーザー simansiman
提出日時 2021-08-21 02:43:24
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 789 bytes
コンパイル時間 265 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 73,472 KB
最終ジャッジ日時 2024-10-14 11:21:44
合計ジャッジ時間 18,772 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
19,840 KB
testcase_01 AC 94 ms
19,840 KB
testcase_02 AC 94 ms
20,096 KB
testcase_03 AC 550 ms
65,664 KB
testcase_04 AC 419 ms
53,888 KB
testcase_05 AC 513 ms
61,568 KB
testcase_06 AC 560 ms
66,816 KB
testcase_07 AC 566 ms
67,200 KB
testcase_08 AC 639 ms
69,120 KB
testcase_09 AC 659 ms
70,656 KB
testcase_10 AC 655 ms
70,784 KB
testcase_11 AC 670 ms
71,424 KB
testcase_12 AC 616 ms
68,480 KB
testcase_13 AC 620 ms
68,352 KB
testcase_14 AC 658 ms
70,784 KB
testcase_15 AC 598 ms
67,688 KB
testcase_16 AC 677 ms
71,040 KB
testcase_17 AC 654 ms
68,352 KB
testcase_18 AC 693 ms
72,576 KB
testcase_19 RE -
testcase_20 AC 722 ms
73,344 KB
testcase_21 RE -
testcase_22 AC 739 ms
73,472 KB
testcase_23 AC 738 ms
73,216 KB
testcase_24 AC 565 ms
67,200 KB
testcase_25 AC 565 ms
67,456 KB
testcase_26 AC 282 ms
42,112 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
A = gets.split.map(&:to_i)
B = gets.split.map(&:to_i)

positions = Array.new(1_000_010, false)

A.each do |a|
  positions[a] = true
end

def dfs(i, positions, commands)
  while A[i] != B[i]
    a = A[i]

    if A[i] < B[i]
      if positions[a + 1]
        dfs(i + 1, positions, commands)
      else
        commands << [i, 'R']
        positions[a] = false
        positions[a + 1] = true
        A[i] += 1
      end
    else
      if positions[a - 1]
        dfs(i + 1, positions, commands)
      else
        commands << [i, 'L']
        positions[a] = false
        positions[a - 1] = true
        A[i] -= 1
      end
    end
  end
end

commands = []

N.times do |i|
  dfs(i, positions, commands)
end

puts commands.size
puts commands.map { |i, d| [i + 1, d].join(' ') }
0