結果

問題 No.448 ゆきこーだーの雨と雪 (3)
ユーザー kotatsugamekotatsugame
提出日時 2019-10-18 04:16:47
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 351 ms / 2,000 ms
コード長 613 bytes
コンパイル時間 654 ms
コンパイル使用メモリ 71,416 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-25 14:00:47
合計ジャッジ時間 8,921 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 3 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 3 ms
6,944 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 47 ms
6,940 KB
testcase_14 AC 51 ms
6,940 KB
testcase_15 AC 129 ms
6,940 KB
testcase_16 AC 228 ms
6,944 KB
testcase_17 AC 182 ms
6,944 KB
testcase_18 AC 36 ms
6,940 KB
testcase_19 AC 311 ms
6,944 KB
testcase_20 AC 98 ms
6,940 KB
testcase_21 AC 283 ms
6,940 KB
testcase_22 AC 106 ms
6,940 KB
testcase_23 AC 312 ms
6,940 KB
testcase_24 AC 75 ms
6,944 KB
testcase_25 AC 288 ms
6,940 KB
testcase_26 AC 35 ms
6,940 KB
testcase_27 AC 234 ms
6,944 KB
testcase_28 AC 212 ms
6,944 KB
testcase_29 AC 120 ms
6,940 KB
testcase_30 AC 327 ms
6,944 KB
testcase_31 AC 41 ms
6,940 KB
testcase_32 AC 39 ms
6,940 KB
testcase_33 AC 350 ms
6,944 KB
testcase_34 AC 299 ms
6,940 KB
testcase_35 AC 351 ms
6,944 KB
testcase_36 AC 241 ms
6,944 KB
testcase_37 AC 335 ms
6,940 KB
testcase_38 AC 311 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:29:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   29 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<algorithm>
#include<vector>
using namespace std;
int N,K;
int T[2<<17],D[2<<17];
long f(int X)
{
	vector<long>dp(N+1,2e18);
	dp[0]=0;
	int id=0;
	long ns=0;
	int cnt=0;
	for(int i=0;i<N;i++)
	{
		if(D[i]<=X)dp[i+1]=dp[i]+D[i];
		while(T[id]+K<=T[i])
		{
			ns-=D[id];
			cnt-=D[id]>X;
			id++;
		}
		if(cnt==0)dp[i+1]=min(dp[i+1],dp[id]+ns);
		ns+=D[i];
		if(D[i]>X)cnt++;
	}
	return dp[N];
}
main()
{
	cin>>N>>K;
	for(int i=0;i<N;i++)cin>>T[i]>>D[i];
	int L=-1,R=1e9;
	while(R-L>1)
	{
		int M=(L+R)/2;
		long now=f(M);
		if(f(M)<1e18)R=M;
		else L=M;
	}
	cout<<R<<endl<<f(R)<<endl;
}
0