結果

問題 No.448 ゆきこーだーの雨と雪 (3)
ユーザー cielciel
提出日時 2016-11-23 01:29:47
言語 Ruby
(3.3.0)
結果
AC  
実行時間 678 ms / 2,000 ms
コード長 574 bytes
コンパイル時間 370 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 31,488 KB
最終ジャッジ日時 2024-06-11 19:37:22
合計ジャッジ時間 13,519 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
12,288 KB
testcase_01 AC 78 ms
12,288 KB
testcase_02 AC 75 ms
12,288 KB
testcase_03 AC 76 ms
12,288 KB
testcase_04 AC 83 ms
12,288 KB
testcase_05 AC 77 ms
12,160 KB
testcase_06 AC 78 ms
12,416 KB
testcase_07 AC 80 ms
12,288 KB
testcase_08 AC 90 ms
12,160 KB
testcase_09 AC 90 ms
12,288 KB
testcase_10 AC 85 ms
12,288 KB
testcase_11 AC 86 ms
12,160 KB
testcase_12 AC 78 ms
12,416 KB
testcase_13 AC 167 ms
14,464 KB
testcase_14 AC 160 ms
14,848 KB
testcase_15 AC 301 ms
19,712 KB
testcase_16 AC 434 ms
24,192 KB
testcase_17 AC 443 ms
25,088 KB
testcase_18 AC 143 ms
14,080 KB
testcase_19 AC 596 ms
28,032 KB
testcase_20 AC 260 ms
18,432 KB
testcase_21 AC 612 ms
28,416 KB
testcase_22 AC 269 ms
18,432 KB
testcase_23 AC 528 ms
28,544 KB
testcase_24 AC 202 ms
16,384 KB
testcase_25 AC 614 ms
28,032 KB
testcase_26 AC 132 ms
14,336 KB
testcase_27 AC 407 ms
24,704 KB
testcase_28 AC 470 ms
23,680 KB
testcase_29 AC 263 ms
18,816 KB
testcase_30 AC 576 ms
28,800 KB
testcase_31 AC 146 ms
14,336 KB
testcase_32 AC 153 ms
14,720 KB
testcase_33 AC 657 ms
31,488 KB
testcase_34 AC 660 ms
31,232 KB
testcase_35 AC 581 ms
31,360 KB
testcase_36 AC 633 ms
31,360 KB
testcase_37 AC 678 ms
31,488 KB
testcase_38 AC 629 ms
31,360 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

#!/usr/bin/ruby
n,k=gets.split.map(&:to_i)
a=$<.map{|e|e.split.map(&:to_i)}
p ma=(0..10**9).bsearch{|e|
	tail=-k
	!!a.each{|t,d|
		if d>e
			if t-tail<k
				break
			else
				tail=t
			end
		end
	}
}
t,d=a.transpose
ng=[false]*n
tail=-k
0.upto(n-1){|i|
	if d[i]>ma
		tail=t[i]
	elsif t[i]-tail<k
		ng[i]=true
	end
}
tail=t[-1]+k
(n-1).downto(0){|i|
	if d[i]>ma
		tail=t[i]
	elsif tail-t[i]<k
		ng[i]=true
	end
}
s=0
n.times{|i|
	if d[i]>ma
		d[i]=0
	else
		s+=d[i]
		d[i]=0 if ng[i]
	end
}
m=[j=0]
n.times{|i|
	j+=1 while t[i]-t[j]>=k
	m[i+1]=[m[i],m[j]+d[i]].max
}
p s-m[n]
0