結果

問題 No.409 ダイエット
ユーザー vjudge1vjudge1
提出日時 2024-11-12 18:31:14
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 1,095 bytes
コンパイル時間 1,813 ms
コンパイル使用メモリ 169,324 KB
実行使用メモリ 11,492 KB
最終ジャッジ日時 2024-11-12 18:31:21
合計ジャッジ時間 6,132 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,524 KB
testcase_01 AC 3 ms
7,520 KB
testcase_02 AC 3 ms
7,520 KB
testcase_03 AC 3 ms
7,520 KB
testcase_04 AC 3 ms
7,520 KB
testcase_05 AC 3 ms
7,644 KB
testcase_06 AC 3 ms
7,520 KB
testcase_07 AC 3 ms
7,644 KB
testcase_08 AC 3 ms
7,516 KB
testcase_09 AC 3 ms
7,516 KB
testcase_10 AC 3 ms
7,652 KB
testcase_11 AC 3 ms
7,516 KB
testcase_12 AC 3 ms
7,648 KB
testcase_13 AC 3 ms
7,520 KB
testcase_14 AC 3 ms
7,648 KB
testcase_15 AC 3 ms
7,648 KB
testcase_16 AC 3 ms
7,520 KB
testcase_17 AC 3 ms
7,520 KB
testcase_18 AC 3 ms
7,648 KB
testcase_19 AC 3 ms
7,520 KB
testcase_20 AC 3 ms
7,516 KB
testcase_21 AC 3 ms
7,520 KB
testcase_22 AC 3 ms
7,648 KB
testcase_23 AC 3 ms
7,648 KB
testcase_24 AC 3 ms
7,648 KB
testcase_25 AC 3 ms
7,516 KB
testcase_26 AC 3 ms
7,648 KB
testcase_27 AC 3 ms
7,644 KB
testcase_28 AC 3 ms
7,524 KB
testcase_29 AC 3 ms
7,648 KB
testcase_30 AC 3 ms
7,524 KB
testcase_31 AC 3 ms
7,524 KB
testcase_32 AC 3 ms
7,644 KB
testcase_33 AC 3 ms
7,516 KB
testcase_34 AC 3 ms
7,520 KB
testcase_35 AC 8 ms
7,392 KB
testcase_36 AC 9 ms
7,776 KB
testcase_37 AC 8 ms
7,524 KB
testcase_38 AC 8 ms
7,520 KB
testcase_39 AC 8 ms
7,524 KB
testcase_40 AC 9 ms
7,524 KB
testcase_41 AC 10 ms
7,524 KB
testcase_42 AC 10 ms
7,520 KB
testcase_43 AC 9 ms
7,648 KB
testcase_44 AC 8 ms
7,520 KB
testcase_45 AC 9 ms
7,524 KB
testcase_46 AC 9 ms
7,528 KB
testcase_47 AC 9 ms
7,524 KB
testcase_48 AC 8 ms
7,524 KB
testcase_49 AC 10 ms
7,524 KB
testcase_50 AC 9 ms
7,648 KB
testcase_51 AC 9 ms
7,652 KB
testcase_52 AC 10 ms
7,656 KB
testcase_53 AC 9 ms
7,656 KB
testcase_54 AC 8 ms
7,652 KB
testcase_55 AC 17 ms
8,292 KB
testcase_56 AC 34 ms
8,040 KB
testcase_57 AC 32 ms
10,812 KB
testcase_58 AC 17 ms
8,548 KB
testcase_59 AC 22 ms
8,932 KB
testcase_60 AC 15 ms
8,676 KB
testcase_61 AC 30 ms
10,344 KB
testcase_62 AC 30 ms
10,852 KB
testcase_63 AC 31 ms
10,468 KB
testcase_64 AC 17 ms
8,292 KB
testcase_65 AC 32 ms
10,464 KB
testcase_66 AC 33 ms
9,956 KB
testcase_67 AC 26 ms
9,704 KB
testcase_68 AC 23 ms
9,780 KB
testcase_69 AC 29 ms
10,212 KB
testcase_70 AC 33 ms
10,084 KB
testcase_71 AC 19 ms
8,424 KB
testcase_72 AC 40 ms
10,216 KB
testcase_73 AC 40 ms
8,932 KB
testcase_74 AC 24 ms
9,188 KB
testcase_75 AC 38 ms
9,320 KB
testcase_76 AC 27 ms
9,956 KB
testcase_77 AC 21 ms
8,292 KB
testcase_78 AC 21 ms
8,932 KB
testcase_79 AC 19 ms
9,800 KB
testcase_80 AC 38 ms
11,492 KB
testcase_81 AC 39 ms
9,184 KB
testcase_82 AC 28 ms
8,808 KB
testcase_83 AC 30 ms
9,960 KB
testcase_84 AC 27 ms
8,036 KB
testcase_85 AC 5 ms
7,656 KB
testcase_86 AC 26 ms
9,952 KB
testcase_87 AC 33 ms
10,236 KB
testcase_88 AC 16 ms
8,544 KB
testcase_89 AC 31 ms
8,676 KB
testcase_90 AC 16 ms
7,780 KB
testcase_91 AC 32 ms
9,700 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