結果

問題 No.2808 Concentration
ユーザー kotatsugamekotatsugame
提出日時 2024-07-12 21:50:25
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 777 bytes
コンパイル時間 878 ms
コンパイル使用メモリ 76,120 KB
実行使用メモリ 12,268 KB
最終ジャッジ日時 2024-07-12 21:50:33
合計ジャッジ時間 7,827 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
10,220 KB
testcase_01 AC 79 ms
10,340 KB
testcase_02 AC 83 ms
10,088 KB
testcase_03 AC 76 ms
10,220 KB
testcase_04 AC 3 ms
7,524 KB
testcase_05 AC 3 ms
7,524 KB
testcase_06 AC 3 ms
7,656 KB
testcase_07 AC 35 ms
8,808 KB
testcase_08 AC 16 ms
8,172 KB
testcase_09 AC 4 ms
9,696 KB
testcase_10 AC 53 ms
11,240 KB
testcase_11 AC 50 ms
10,208 KB
testcase_12 AC 24 ms
8,292 KB
testcase_13 AC 74 ms
10,604 KB
testcase_14 AC 14 ms
8,044 KB
testcase_15 AC 70 ms
11,244 KB
testcase_16 AC 68 ms
10,600 KB
testcase_17 AC 76 ms
10,212 KB
testcase_18 AC 79 ms
12,268 KB
testcase_19 AC 41 ms
9,448 KB
testcase_20 AC 74 ms
11,756 KB
testcase_21 AC 67 ms
10,600 KB
testcase_22 AC 49 ms
9,324 KB
testcase_23 AC 45 ms
11,232 KB
testcase_24 AC 70 ms
10,980 KB
testcase_25 AC 40 ms
9,068 KB
testcase_26 AC 71 ms
10,348 KB
testcase_27 AC 79 ms
10,416 KB
testcase_28 AC 79 ms
10,336 KB
testcase_29 AC 79 ms
11,748 KB
testcase_30 AC 79 ms
10,596 KB
testcase_31 AC 78 ms
11,624 KB
testcase_32 AC 78 ms
12,140 KB
testcase_33 AC 79 ms
9,964 KB
testcase_34 AC 79 ms
12,008 KB
testcase_35 AC 77 ms
11,104 KB
testcase_36 AC 79 ms
12,004 KB
testcase_37 AC 79 ms
10,852 KB
testcase_38 AC 78 ms
11,624 KB
testcase_39 AC 78 ms
10,464 KB
testcase_40 AC 78 ms
10,476 KB
testcase_41 AC 79 ms
12,008 KB
testcase_42 AC 79 ms
11,240 KB
testcase_43 AC 79 ms
10,092 KB
testcase_44 AC 78 ms
9,828 KB
testcase_45 AC 78 ms
10,980 KB
testcase_46 AC 78 ms
10,984 KB
testcase_47 AC 3 ms
7,660 KB
testcase_48 AC 3 ms
9,564 KB
testcase_49 AC 3 ms
9,700 KB
testcase_50 AC 3 ms
7,532 KB
testcase_51 AC 3 ms
7,524 KB
testcase_52 AC 3 ms
9,572 KB
testcase_53 AC 3 ms
7,660 KB
testcase_54 AC 3 ms
7,528 KB
testcase_55 AC 3 ms
9,568 KB
testcase_56 AC 3 ms
7,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<deque>
#include<vector>
#include<cassert>
using namespace std;
int N,S,H;
int L[2<<17],R[2<<17],Z[2<<17];
long dp[2<<17],ZS[2<<17];
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	cin>>N>>S>>H;
	L[0]=R[0]=-H;
	long zs=0;
	for(int i=1;i<=N;i++)
	{
		cin>>L[i]>>R[i]>>Z[i];
		zs+=Z[i];
		ZS[i+1]=ZS[i]+Z[i];
		dp[i]=1e18;
	}
	deque<pair<int,long> >Q;
	int l=0;
	long mx=0;
	for(int i=1;i<=N;i++)
	{
		dp[i]=dp[i-1]+Z[i];
		while(R[l+1]+H<=L[i])l++;
		pair<int,long>t=make_pair(L[i],dp[l]+ZS[i]-ZS[l+1]);
		while(!Q.empty()&&Q.back().second>=t.second)Q.pop_back();
		Q.push_back(t);
		while(!Q.empty()&&Q.front().first+S<R[i])Q.pop_front();
		if(!Q.empty())dp[i]=min(dp[i],Q.front().second);
		mx=max(mx,dp[i]);
	}
	cout<<zs-mx<<endl;
}
0