結果

問題 No.110 しましまピラミッド
ユーザー horiesinitihoriesiniti
提出日時 2018-03-16 09:17:48
言語 Ruby
(3.3.0)
結果
AC  
実行時間 100 ms / 5,000 ms
コード長 571 bytes
コンパイル時間 68 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-06-10 03:15:51
合計ジャッジ時間 3,788 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
12,416 KB
testcase_01 AC 100 ms
12,288 KB
testcase_02 AC 91 ms
12,416 KB
testcase_03 AC 91 ms
12,416 KB
testcase_04 AC 90 ms
12,160 KB
testcase_05 AC 95 ms
12,288 KB
testcase_06 AC 91 ms
12,160 KB
testcase_07 AC 92 ms
12,416 KB
testcase_08 AC 90 ms
12,288 KB
testcase_09 AC 89 ms
12,416 KB
testcase_10 AC 93 ms
12,416 KB
testcase_11 AC 94 ms
12,160 KB
testcase_12 AC 91 ms
12,416 KB
testcase_13 AC 90 ms
12,288 KB
testcase_14 AC 92 ms
12,288 KB
testcase_15 AC 90 ms
12,288 KB
testcase_16 AC 89 ms
12,288 KB
testcase_17 AC 92 ms
12,416 KB
testcase_18 AC 92 ms
12,416 KB
testcase_19 AC 89 ms
12,288 KB
testcase_20 AC 98 ms
12,416 KB
testcase_21 AC 90 ms
12,416 KB
testcase_22 AC 87 ms
12,416 KB
testcase_23 AC 90 ms
12,160 KB
testcase_24 AC 93 ms
12,416 KB
testcase_25 AC 93 ms
12,160 KB
testcase_26 AC 90 ms
12,288 KB
testcase_27 AC 89 ms
12,416 KB
testcase_28 AC 90 ms
12,288 KB
testcase_29 AC 91 ms
12,416 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def f(h,c,b,w,ans)
	if b.empty? ==true && c.empty? ==true
		return ans
	end
	if (c=="w" && b.empty? ==true) || (c=="b" && w.empty? ==true)
		return ans
	end
	res=0
	if c=="w"
		e=b.pop
		if e<h
			res=f(e,"b",b,w,ans+1)
		else
			res= f(h,"w",b,w,ans)
		end
		b.push(e)
	else
		e=w.pop
		if e<h
			res= f(e,"w",b,w,ans+1)
		else
			res= f(h,"b",b,w,ans)
		end
		w.push(e)
	end
	return res
end

gets
b=gets.split.map{|e| e.to_i}.sort
gets
w=gets.split.map{|e| e.to_i}.sort

e=b.pop
ans0=f(e,"b",b,w,1)
b.push(e)

e=w.pop
ans1=f(e,"w",b,w,1)
w.push(e)

puts [ans0,ans1].max
0