結果

問題 No.33 アメーバがたくさん
ユーザー cielciel
提出日時 2015-10-29 02:19:41
言語 Ruby
(3.3.0)
結果
AC  
実行時間 81 ms / 5,000 ms
コード長 836 bytes
コンパイル時間 376 ms
コンパイル使用メモリ 11,888 KB
実行使用メモリ 16,088 KB
最終ジャッジ日時 2023-10-24 17:54:31
合計ジャッジ時間 2,330 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
16,088 KB
testcase_01 AC 80 ms
16,088 KB
testcase_02 AC 78 ms
16,088 KB
testcase_03 AC 77 ms
16,088 KB
testcase_04 AC 76 ms
16,088 KB
testcase_05 AC 78 ms
16,088 KB
testcase_06 AC 81 ms
16,088 KB
testcase_07 AC 81 ms
16,084 KB
testcase_08 AC 81 ms
16,088 KB
testcase_09 AC 80 ms
16,088 KB
testcase_10 AC 79 ms
16,088 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:30: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

#!/usr/bin/ruby
def checkio(data)
	result=0
	se=[]
	data.each{|l,r|
		right_idx=(0...se.size).bsearch{|i|([l,0]<=>se[i])<=0}||se.size #l <= se[right][0]
		if right_idx!=0
			left_idx=right_idx-1
			if l<=se[left_idx][1] # overlap with left
				l=se[left_idx][0]
				r=[r,se[left_idx][1]].max
				result-=se[left_idx][1]-se[left_idx][0]+1
				se.delete_at(left_idx)
				right_idx-=1
			end
		end
		while right_idx<se.size && se[right_idx][0]<=r # overlap with right
			r=[r,se[right_idx][1]].max
			result-=se[right_idx][1]-se[right_idx][0]+1
			se.delete_at(right_idx)
		end
		result+=r-l+1
		se.insert(right_idx,[l,r])
	}
	return result
end

if __FILE__ == $0
	dic=Hash.new{|h,k|h[k]=[]}
	n,d,t=gets.split.map(&:to_i)
	gets.split.map(&:to_i).each{|e|
		mod=e%d
		dic[mod]<<[e/d-t,(e/d+t)]
	}
	p dic.reduce(0){|s,(k,v)|s+checkio(v)}
end
0