結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
19,104 KB
testcase_01 AC 97 ms
19,968 KB
testcase_02 AC 93 ms
12,288 KB
testcase_03 AC 374 ms
40,576 KB
testcase_04 AC 288 ms
37,504 KB
testcase_05 AC 338 ms
40,576 KB
testcase_06 AC 389 ms
42,240 KB
testcase_07 AC 398 ms
44,160 KB
testcase_08 AC 486 ms
55,936 KB
testcase_09 AC 1,284 ms
50,816 KB
testcase_10 AC 503 ms
57,984 KB
testcase_11 AC 574 ms
55,680 KB
testcase_12 AC 579 ms
43,776 KB
testcase_13 AC 599 ms
42,752 KB
testcase_14 AC 595 ms
55,424 KB
testcase_15 AC 476 ms
43,852 KB
testcase_16 AC 549 ms
57,600 KB
testcase_17 AC 532 ms
56,960 KB
testcase_18 AC 587 ms
53,024 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
		while diff != 0 and (not c[pos+d]) do
			diff -= d
			pos += d
			ans << [i, d > 0 ? "R" : "L"]
		end
		c[pos] = true
		q << [i, pos, diff] if diff != 0
	end
end

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