結果

問題 No.409 ダイエット
ユーザー vjudge1vjudge1
提出日時 2024-11-12 18:27:41
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 32 ms / 2,000 ms
コード長 1,117 bytes
コンパイル時間 1,551 ms
コンパイル使用メモリ 169,200 KB
実行使用メモリ 11,496 KB
最終ジャッジ日時 2024-11-12 18:27:47
合計ジャッジ時間 5,065 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,516 KB
testcase_01 AC 2 ms
7,644 KB
testcase_02 AC 2 ms
7,520 KB
testcase_03 AC 2 ms
7,520 KB
testcase_04 AC 2 ms
7,520 KB
testcase_05 AC 2 ms
7,648 KB
testcase_06 AC 2 ms
7,648 KB
testcase_07 AC 2 ms
7,520 KB
testcase_08 AC 2 ms
7,524 KB
testcase_09 AC 2 ms
7,520 KB
testcase_10 AC 2 ms
7,520 KB
testcase_11 AC 3 ms
7,644 KB
testcase_12 AC 2 ms
7,644 KB
testcase_13 AC 2 ms
7,652 KB
testcase_14 AC 2 ms
7,524 KB
testcase_15 AC 2 ms
7,524 KB
testcase_16 AC 3 ms
7,648 KB
testcase_17 AC 2 ms
7,648 KB
testcase_18 AC 2 ms
7,644 KB
testcase_19 AC 3 ms
7,520 KB
testcase_20 AC 2 ms
7,644 KB
testcase_21 AC 2 ms
7,516 KB
testcase_22 AC 2 ms
7,520 KB
testcase_23 AC 2 ms
7,648 KB
testcase_24 AC 3 ms
7,648 KB
testcase_25 AC 2 ms
7,648 KB
testcase_26 AC 2 ms
7,520 KB
testcase_27 AC 2 ms
7,520 KB
testcase_28 AC 2 ms
7,524 KB
testcase_29 AC 2 ms
7,644 KB
testcase_30 AC 2 ms
7,520 KB
testcase_31 AC 2 ms
7,644 KB
testcase_32 AC 2 ms
7,520 KB
testcase_33 AC 2 ms
7,648 KB
testcase_34 AC 2 ms
7,648 KB
testcase_35 AC 2 ms
7,528 KB
testcase_36 AC 2 ms
7,524 KB
testcase_37 AC 2 ms
7,524 KB
testcase_38 AC 3 ms
7,524 KB
testcase_39 AC 3 ms
7,524 KB
testcase_40 AC 2 ms
7,648 KB
testcase_41 AC 2 ms
7,524 KB
testcase_42 AC 3 ms
7,528 KB
testcase_43 AC 2 ms
7,524 KB
testcase_44 AC 3 ms
7,648 KB
testcase_45 AC 2 ms
7,528 KB
testcase_46 AC 2 ms
7,524 KB
testcase_47 AC 3 ms
7,520 KB
testcase_48 AC 2 ms
7,520 KB
testcase_49 AC 3 ms
7,528 KB
testcase_50 AC 3 ms
7,652 KB
testcase_51 AC 2 ms
7,524 KB
testcase_52 AC 3 ms
7,648 KB
testcase_53 AC 3 ms
7,652 KB
testcase_54 AC 2 ms
7,520 KB
testcase_55 AC 15 ms
9,932 KB
testcase_56 AC 30 ms
8,168 KB
testcase_57 AC 27 ms
10,808 KB
testcase_58 AC 13 ms
8,292 KB
testcase_59 AC 18 ms
9,836 KB
testcase_60 AC 12 ms
9,848 KB
testcase_61 AC 25 ms
10,472 KB
testcase_62 AC 25 ms
10,596 KB
testcase_63 AC 24 ms
9,832 KB
testcase_64 AC 14 ms
8,544 KB
testcase_65 AC 28 ms
10,208 KB
testcase_66 AC 28 ms
10,760 KB
testcase_67 AC 20 ms
9,572 KB
testcase_68 AC 19 ms
8,168 KB
testcase_69 AC 25 ms
10,464 KB
testcase_70 AC 28 ms
10,216 KB
testcase_71 AC 16 ms
8,932 KB
testcase_72 AC 32 ms
10,772 KB
testcase_73 AC 32 ms
9,704 KB
testcase_74 AC 19 ms
8,804 KB
testcase_75 AC 32 ms
9,828 KB
testcase_76 AC 22 ms
8,932 KB
testcase_77 AC 16 ms
7,912 KB
testcase_78 AC 16 ms
8,548 KB
testcase_79 AC 15 ms
8,672 KB
testcase_80 AC 32 ms
11,496 KB
testcase_81 AC 32 ms
10,088 KB
testcase_82 AC 23 ms
9,444 KB
testcase_83 AC 25 ms
10,088 KB
testcase_84 AC 21 ms
8,544 KB
testcase_85 AC 4 ms
7,524 KB
testcase_86 AC 21 ms
8,680 KB
testcase_87 AC 28 ms
9,960 KB
testcase_88 AC 14 ms
9,952 KB
testcase_89 AC 25 ms
8,808 KB
testcase_90 AC 13 ms
7,780 KB
testcase_91 AC 26 ms
9,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define int long long
#define maxn 300005
using namespace std;
int n,A,B,W,d[maxn],dp[maxn],pre[maxn],ans=1e18;
inline long double Y(int i){
	double s=dp[i]+B*i*i*0.5+B*i*0.5+i*A;
	return s*1.000;
}
inline long double X(int i){return i*1.00;}
inline long double k(int i,int j){return (Y(i)-Y(j))*1.00/(X(i)-X(j));}
int head,tail,q[maxn];
signed main(){
	ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
	cin>>n>>A>>B>>W;dp[0]=W;
	for(int i=1;i<=n;++i)dp[i]=1e18;
	for(int i=1;i<=n;++i)cin>>d[i];
	ans=W+n*(n+1)/2*B-n*A;
//	if(n<=3000){
//		for(int i=1;i<=n;++i){
//			for(int j=0;j<i;++j){
//				int res=(i-j-1)*(i-j);
//				dp[i]=min(dp[i],dp[j]+d[i]+(res)/2*B-(i-j-1)*A);
//			}
//			ans=min(ans,dp[i]+(n-i)*(n-i+1)/2*B-(n-i)*A);
//		}
//	}
//	else{
		for(int i=1;i<=n;++i){
			while(head<tail&&k(q[head],q[head+1])<=1.00*B*i)head++;
			int j=q[head];int res=(i-j-1)*(i-j);
			dp[i]=dp[j]+d[i]+(res)/2*B-(i-j-1)*A;
			while(head<tail&&k(q[tail],i)<=1.00*k(q[tail],q[tail-1]))tail--;
			q[++tail]=i;
			ans=min(ans,dp[i]+(n-i)*(n-i+1)/2*B-(n-i)*A);
		}
//	}
	cout<<min(ans,dp[n]);
	return 0;
}
0