結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
12,288 KB
testcase_01 AC 83 ms
12,288 KB
testcase_02 AC 80 ms
12,288 KB
testcase_03 AC 81 ms
12,032 KB
testcase_04 AC 84 ms
12,288 KB
testcase_05 AC 80 ms
12,416 KB
testcase_06 AC 84 ms
12,288 KB
testcase_07 AC 81 ms
12,288 KB
testcase_08 AC 84 ms
12,288 KB
testcase_09 AC 82 ms
12,160 KB
testcase_10 AC 81 ms
12,160 KB
testcase_11 AC 83 ms
12,160 KB
testcase_12 AC 82 ms
12,288 KB
testcase_13 AC 173 ms
13,952 KB
testcase_14 AC 172 ms
14,208 KB
testcase_15 AC 319 ms
18,432 KB
testcase_16 AC 464 ms
22,144 KB
testcase_17 AC 480 ms
22,912 KB
testcase_18 AC 154 ms
13,824 KB
testcase_19 AC 652 ms
25,216 KB
testcase_20 AC 293 ms
17,408 KB
testcase_21 AC 688 ms
25,472 KB
testcase_22 AC 294 ms
17,408 KB
testcase_23 AC 572 ms
25,472 KB
testcase_24 AC 214 ms
15,616 KB
testcase_25 AC 747 ms
25,344 KB
testcase_26 AC 136 ms
13,952 KB
testcase_27 AC 454 ms
22,400 KB
testcase_28 AC 474 ms
21,760 KB
testcase_29 AC 281 ms
17,536 KB
testcase_30 AC 637 ms
26,112 KB
testcase_31 AC 153 ms
13,952 KB
testcase_32 AC 163 ms
14,336 KB
testcase_33 AC 729 ms
28,160 KB
testcase_34 AC 735 ms
28,288 KB
testcase_35 AC 638 ms
28,032 KB
testcase_36 AC 630 ms
28,288 KB
testcase_37 AC 749 ms
28,288 KB
testcase_38 AC 687 ms
28,288 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]
t=x=0
n.times{|i|
	t=[t,dp[x+=1]].max while a[i][0]-a[x][0]>=k
	dp[i+1]=[dp[i],t+a[i][1]].max
}
p s-dp[n]
0