結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
12,160 KB
testcase_01 AC 80 ms
12,160 KB
testcase_02 AC 78 ms
12,288 KB
testcase_03 AC 75 ms
12,160 KB
testcase_04 AC 78 ms
12,160 KB
testcase_05 AC 78 ms
12,160 KB
testcase_06 AC 84 ms
12,288 KB
testcase_07 AC 77 ms
12,032 KB
testcase_08 AC 83 ms
12,160 KB
testcase_09 AC 79 ms
12,032 KB
testcase_10 AC 77 ms
12,032 KB
testcase_11 AC 81 ms
12,288 KB
testcase_12 AC 78 ms
12,288 KB
testcase_13 AC 159 ms
13,952 KB
testcase_14 AC 160 ms
14,080 KB
testcase_15 AC 309 ms
18,176 KB
testcase_16 AC 440 ms
21,888 KB
testcase_17 AC 447 ms
22,656 KB
testcase_18 AC 143 ms
13,824 KB
testcase_19 AC 621 ms
25,216 KB
testcase_20 AC 261 ms
17,152 KB
testcase_21 AC 640 ms
25,600 KB
testcase_22 AC 275 ms
17,280 KB
testcase_23 AC 543 ms
25,600 KB
testcase_24 AC 202 ms
15,616 KB
testcase_25 AC 652 ms
25,344 KB
testcase_26 AC 138 ms
13,824 KB
testcase_27 AC 435 ms
22,528 KB
testcase_28 AC 465 ms
21,632 KB
testcase_29 AC 271 ms
17,536 KB
testcase_30 AC 622 ms
25,728 KB
testcase_31 AC 153 ms
14,080 KB
testcase_32 AC 155 ms
14,208 KB
testcase_33 AC 689 ms
28,160 KB
testcase_34 AC 701 ms
28,288 KB
testcase_35 AC 619 ms
28,288 KB
testcase_36 AC 616 ms
28,032 KB
testcase_37 AC 744 ms
28,288 KB
testcase_38 AC 658 ms
28,032 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
	}
}
ng=[false]*n
tail=-k
0.upto(n-1){|i|
	if a[i][1]>ma
		tail=a[i][0]
	elsif a[i][0]-tail<k
		ng[i]=true
	end
}
tail=a[-1][0]+k
(n-1).downto(0){|i|
	if a[i][1]>ma
		tail=a[i][0]
	elsif tail-a[i][0]<k
		ng[i]=true
	end
}
s=0
n.times{|i|
	if a[i][1]>ma
		a[i][1]=0
	else
		s+=a[i][1]
		a[i][1]=0 if ng[i]
	end
}
dp=[0]
x=0
n.times{|i|
	x+=1 while a[i][0]-a[x][0]>=k
	dp[i+1]=[dp[i],dp[x]+a[i][1]].max
}
p s-dp[n]
0