結果

問題 No.448 ゆきこーだーの雨と雪 (3)
ユーザー startcppstartcpp
提出日時 2016-11-19 00:01:27
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 160 ms / 2,000 ms
コード長 1,758 bytes
コンパイル時間 628 ms
コンパイル使用メモリ 58,908 KB
実行使用メモリ 9,936 KB
最終ジャッジ日時 2024-06-11 19:32:27
合計ジャッジ時間 4,553 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
7,500 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
7,504 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
7,632 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
7,496 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
7,628 KB
testcase_11 AC 3 ms
7,496 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 23 ms
8,012 KB
testcase_14 AC 25 ms
8,012 KB
testcase_15 AC 64 ms
7,372 KB
testcase_16 AC 104 ms
8,912 KB
testcase_17 AC 109 ms
8,780 KB
testcase_18 AC 20 ms
6,940 KB
testcase_19 AC 142 ms
9,296 KB
testcase_20 AC 51 ms
6,996 KB
testcase_21 AC 143 ms
9,676 KB
testcase_22 AC 53 ms
7,116 KB
testcase_23 AC 146 ms
9,552 KB
testcase_24 AC 36 ms
6,948 KB
testcase_25 AC 141 ms
9,428 KB
testcase_26 AC 18 ms
7,756 KB
testcase_27 AC 105 ms
8,392 KB
testcase_28 AC 98 ms
8,396 KB
testcase_29 AC 56 ms
6,940 KB
testcase_30 AC 153 ms
9,552 KB
testcase_31 AC 22 ms
6,944 KB
testcase_32 AC 24 ms
6,944 KB
testcase_33 AC 160 ms
9,812 KB
testcase_34 AC 158 ms
9,936 KB
testcase_35 AC 159 ms
9,808 KB
testcase_36 AC 152 ms
9,808 KB
testcase_37 AC 156 ms
9,800 KB
testcase_38 AC 153 ms
9,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//難しさの最大値=Tなら、T+1以上のタスクをYukiさんに頼んでそれ以外を自分でやると「Yukiさんの体にやさしい」
//それで無理なら答えはTを超える, OKなら答えはT以下。(st, ed]で2分探索できる.
//難しさ(答え)を求めたら, 総和はちょっと工夫したDPで求まる。(こっちが本質!!)

#include <iostream>
#include <algorithm>
#define int long long
using namespace std;

int n, k;
int t[200000], d[200000];
bool mustWork[200000];
int mustWorkR[200001];
int dp[200001];		//dp[i] = 時刻t[i]からYukiさんを起こせる場合の, それまでにYukiさんがした仕事の量の最大

bool check(int mid) {
	int i;
	int now = -1145141919;
	
	for (i = 0; i < n; i++) {
		if (d[i] > mid) {
			if (now + k > t[i]) return false;
			now = t[i];
		}
	}
	return true;
}

signed main() {
	int i;
	
	cin >> n >> k;
	for (i = 0; i < n; i++) { cin >> t[i] >> d[i]; }
	
	int st = -1, ed = 1000000000, mid;	//(st, ed]
	while (ed - st >= 2) {
		mid = (st + ed) / 2;
		if (check(mid)) { ed = mid; }
		else { st = mid; }
	}
	
	cout << ed << endl;
	
	for (i = 0; i < n; i++) { mustWork[i] = (ed < d[i]); }
	for (i = 1; i <= n; i++) { mustWorkR[i] = mustWork[i-1] + mustWorkR[i-1]; }
	
	for (i = 0; i <= n; i++) { dp[i] = -1145141919893810; }
	dp[0] = 0;
	
	for (i = 0; i < n; i++) {
		int id = lower_bound(t, t + n, t[i] + k) - t;
		
		//もし, mustWork[i+1]~mustWork[id-1]内にtrueがあったら働いちゃだめ
		if (mustWorkR[id] - mustWorkR[i+1] == 0) {
			dp[id] = max(dp[id], dp[i] + d[i]);
		}
		
		if (!mustWork[i]) { dp[i + 1] = max(dp[i + 1], dp[i]); }
	}
	
	int ans = 0;
	for (i = 0; i < n; i++) { ans += d[i]; }
	ans -= dp[n];
	cout << ans << endl;
	return 0;
}
0