結果
問題 | No.1650 Moving Coins |
ユーザー | 小野寺健 |
提出日時 | 2021-11-01 13:10:00 |
言語 | Ruby (3.3.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 617 bytes |
コンパイル時間 | 134 ms |
コンパイル使用メモリ | 7,424 KB |
実行使用メモリ | 62,824 KB |
最終ジャッジ日時 | 2024-10-10 01:21:38 |
合計ジャッジ時間 | 25,006 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 97 ms
12,160 KB |
testcase_01 | AC | 96 ms
20,096 KB |
testcase_02 | AC | 88 ms
12,160 KB |
testcase_03 | WA | - |
testcase_04 | AC | 332 ms
33,024 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 634 ms
57,824 KB |
testcase_23 | AC | 618 ms
57,696 KB |
testcase_24 | AC | 430 ms
43,264 KB |
testcase_25 | AC | 415 ms
36,096 KB |
testcase_26 | AC | 284 ms
45,312 KB |
コンパイルメッセージ
Syntax OK
ソースコード
N = gets.to_i A = gets.split(" ").map{|s| s.to_i} B = gets.split(" ").map{|s| s.to_i} q = [] c = Array.new((A+B).max, false) 0.upto(N-1) {|i| a, b = A[i], B[i] c[a-1] = true q << [i+1, a-1, b-a] if a != b } ans = [] top = true while q.length > 0 do i, pos, diff = q[top ? 0 : -1] d = diff > 0 ? 1 : -1 if c[pos+d] then top = !top i, pos, diff = q[top ? 0 : -1] d = diff > 0 ? 1 : -1 end ans << [i, d > 0 ? "R" : "L"] diff -= d if diff == 0 then if top then q.shift else q.pop end else q[top ? 0 : -1] = [i, pos+d, diff] end end puts ans.length ans.each {|i, d| puts "#{i} #{d}" }