結果

問題 No.409 ダイエット
ユーザー vjudge1vjudge1
提出日時 2024-11-12 16:52:06
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 844 bytes
コンパイル時間 1,867 ms
コンパイル使用メモリ 168,740 KB
実行使用メモリ 7,564 KB
最終ジャッジ日時 2024-11-12 16:52:17
合計ジャッジ時間 8,668 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 1 ms
6,816 KB
testcase_04 AC 1 ms
6,816 KB
testcase_05 AC 1 ms
6,820 KB
testcase_06 AC 1 ms
6,820 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 1 ms
6,820 KB
testcase_09 AC 1 ms
6,816 KB
testcase_10 AC 1 ms
6,816 KB
testcase_11 AC 1 ms
6,816 KB
testcase_12 AC 1 ms
6,820 KB
testcase_13 AC 2 ms
6,820 KB
testcase_14 AC 2 ms
6,816 KB
testcase_15 AC 2 ms
6,820 KB
testcase_16 AC 2 ms
6,816 KB
testcase_17 AC 1 ms
6,820 KB
testcase_18 AC 1 ms
6,816 KB
testcase_19 AC 2 ms
6,816 KB
testcase_20 AC 1 ms
6,816 KB
testcase_21 AC 2 ms
6,816 KB
testcase_22 AC 2 ms
6,816 KB
testcase_23 AC 2 ms
6,816 KB
testcase_24 AC 2 ms
6,820 KB
testcase_25 AC 2 ms
6,816 KB
testcase_26 AC 2 ms
6,816 KB
testcase_27 AC 1 ms
6,820 KB
testcase_28 AC 1 ms
6,820 KB
testcase_29 AC 2 ms
6,816 KB
testcase_30 AC 1 ms
6,816 KB
testcase_31 AC 1 ms
6,816 KB
testcase_32 AC 1 ms
6,820 KB
testcase_33 AC 2 ms
6,816 KB
testcase_34 AC 2 ms
6,816 KB
testcase_35 AC 3 ms
6,820 KB
testcase_36 AC 4 ms
6,820 KB
testcase_37 AC 3 ms
6,820 KB
testcase_38 AC 3 ms
6,820 KB
testcase_39 AC 3 ms
6,816 KB
testcase_40 AC 4 ms
6,816 KB
testcase_41 AC 3 ms
6,820 KB
testcase_42 AC 3 ms
6,816 KB
testcase_43 AC 3 ms
6,816 KB
testcase_44 AC 3 ms
6,816 KB
testcase_45 AC 3 ms
6,820 KB
testcase_46 AC 3 ms
6,820 KB
testcase_47 AC 4 ms
6,820 KB
testcase_48 AC 3 ms
6,816 KB
testcase_49 AC 4 ms
6,816 KB
testcase_50 AC 3 ms
6,816 KB
testcase_51 AC 3 ms
6,816 KB
testcase_52 AC 4 ms
6,816 KB
testcase_53 AC 3 ms
6,820 KB
testcase_54 AC 4 ms
6,820 KB
testcase_55 AC 92 ms
6,820 KB
testcase_56 AC 6 ms
6,820 KB
testcase_57 AC 175 ms
6,816 KB
testcase_58 AC 76 ms
6,816 KB
testcase_59 AC 108 ms
6,820 KB
testcase_60 AC 68 ms
6,820 KB
testcase_61 AC 156 ms
6,824 KB
testcase_62 AC 165 ms
6,820 KB
testcase_63 AC 154 ms
6,816 KB
testcase_64 AC 82 ms
6,816 KB
testcase_65 AC 161 ms
6,820 KB
testcase_66 AC 173 ms
7,136 KB
testcase_67 AC 153 ms
6,820 KB
testcase_68 AC 106 ms
6,820 KB
testcase_69 AC 151 ms
6,816 KB
testcase_70 AC 149 ms
7,120 KB
testcase_71 AC 83 ms
6,816 KB
testcase_72 AC 180 ms
6,816 KB
testcase_73 AC 165 ms
6,824 KB
testcase_74 AC 103 ms
6,816 KB
testcase_75 AC 164 ms
6,820 KB
testcase_76 AC 119 ms
6,820 KB
testcase_77 AC 79 ms
6,820 KB
testcase_78 AC 92 ms
6,816 KB
testcase_79 AC 72 ms
6,820 KB
testcase_80 AC 168 ms
7,564 KB
testcase_81 AC 163 ms
6,820 KB
testcase_82 AC 122 ms
6,816 KB
testcase_83 AC 131 ms
6,816 KB
testcase_84 AC 113 ms
6,820 KB
testcase_85 AC 14 ms
6,820 KB
testcase_86 AC 104 ms
6,820 KB
testcase_87 AC 148 ms
6,928 KB
testcase_88 AC 60 ms
6,820 KB
testcase_89 AC 126 ms
6,816 KB
testcase_90 AC 57 ms
6,816 KB
testcase_91 AC 135 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define int long long
const int N=1e6+10,INF=1e18+10,K=1030;
inline int read(){int x=0,f=1;char ch=getchar();while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();}while(ch>='0'&&ch<='9'){x=(x<<3)+(x<<1)+ch-48;ch=getchar();}return x*f;}
int n,a,b,w,ans=INF,d[N],f[K],g[K];
signed main(){
	n=read(),a=read(),b=read(),w=read();
	for(int i=1;i<=n;i++) d[i]=read();
	if(b==0){
		cout<<w-n*a<<'\n';
		return 0;
	}else{
		int lim=ceil(pow(a/b,0.5))+100;
		lim=min(lim,1010ll);
		memset(f,0x3f,sizeof(f));
		f[0]=w;
		for(int i=1;i<=n;i++){
//			for(int j=0;j<=lim+10;j++) g[j]=INF;
			memset(g,0x3f,sizeof(g));
			for(int j=0;j<=lim;j++){
				g[j+1]=min(g[j+1],f[j]+b*(j+1)-a);
				g[0]=min(g[0],f[j]+d[i]);
			}
			swap(f,g);
		}
		for(int i=0;i<=lim;i++) ans=min(ans,f[i]);
		cout<<ans<<'\n';
	}return 0;
}
0