結果

問題 No.1650 Moving Coins
ユーザー 小野寺健小野寺健
提出日時 2021-11-01 12:39:35
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 515 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 56,192 KB
最終ジャッジ日時 2024-10-10 00:15:00
合計ジャッジ時間 17,056 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
17,536 KB
testcase_01 AC 97 ms
19,968 KB
testcase_02 AC 92 ms
12,160 KB
testcase_03 AC 452 ms
39,552 KB
testcase_04 AC 348 ms
33,152 KB
testcase_05 AC 424 ms
40,832 KB
testcase_06 AC 460 ms
41,984 KB
testcase_07 AC 467 ms
43,520 KB
testcase_08 AC 524 ms
55,040 KB
testcase_09 AC 1,287 ms
52,224 KB
testcase_10 AC 544 ms
56,192 KB
testcase_11 AC 644 ms
52,480 KB
testcase_12 AC 618 ms
45,568 KB
testcase_13 AC 642 ms
43,904 KB
testcase_14 AC 626 ms
50,048 KB
testcase_15 AC 534 ms
38,600 KB
testcase_16 AC 593 ms
50,688 KB
testcase_17 AC 573 ms
51,712 KB
testcase_18 AC 619 ms
51,464 KB
testcase_19 TLE -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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 = []

while q.length > 0 do
	i, pos, diff = q.shift
	d = diff > 0 ? 1 : -1
	if c[pos+d] then
		q << [i, pos, diff]
	else
		c[pos] = false
		c[pos+d] = true
		ans << [i, d > 0 ? "R" : "L"]
		diff -= d
		q << [i, pos+d, diff] if diff != 0
	end
end

puts ans.length
ans.each {|i, d|
	puts "#{i} #{d}"
}
0