結果

問題 No.409 ダイエット
ユーザー vjudge1vjudge1
提出日時 2024-11-12 16:42:40
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 788 bytes
コンパイル時間 2,326 ms
コンパイル使用メモリ 168,132 KB
実行使用メモリ 27,248 KB
最終ジャッジ日時 2024-11-12 16:43:38
合計ジャッジ時間 54,200 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
27,248 KB
testcase_01 AC 26 ms
20,428 KB
testcase_02 AC 24 ms
20,048 KB
testcase_03 AC 24 ms
20,048 KB
testcase_04 AC 28 ms
20,424 KB
testcase_05 AC 29 ms
19,788 KB
testcase_06 AC 26 ms
20,300 KB
testcase_07 AC 19 ms
20,176 KB
testcase_08 AC 26 ms
19,532 KB
testcase_09 AC 28 ms
20,304 KB
testcase_10 AC 25 ms
19,408 KB
testcase_11 AC 28 ms
19,660 KB
testcase_12 AC 26 ms
19,280 KB
testcase_13 AC 21 ms
20,684 KB
testcase_14 AC 28 ms
20,432 KB
testcase_15 AC 3 ms
6,816 KB
testcase_16 AC 20 ms
19,664 KB
testcase_17 AC 23 ms
19,788 KB
testcase_18 AC 25 ms
19,784 KB
testcase_19 AC 27 ms
19,536 KB
testcase_20 AC 22 ms
20,300 KB
testcase_21 AC 23 ms
19,660 KB
testcase_22 AC 21 ms
20,432 KB
testcase_23 AC 21 ms
20,936 KB
testcase_24 AC 19 ms
19,280 KB
testcase_25 AC 29 ms
20,176 KB
testcase_26 AC 23 ms
19,536 KB
testcase_27 AC 28 ms
19,408 KB
testcase_28 AC 18 ms
19,528 KB
testcase_29 AC 24 ms
19,660 KB
testcase_30 AC 26 ms
19,916 KB
testcase_31 AC 24 ms
19,916 KB
testcase_32 AC 28 ms
19,400 KB
testcase_33 AC 25 ms
19,148 KB
testcase_34 AC 23 ms
19,272 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 -- -
testcase_57 -- -
testcase_58 -- -
testcase_59 -- -
testcase_60 -- -
testcase_61 -- -
testcase_62 -- -
testcase_63 -- -
testcase_64 -- -
testcase_65 -- -
testcase_66 -- -
testcase_67 -- -
testcase_68 -- -
testcase_69 -- -
testcase_70 -- -
testcase_71 -- -
testcase_72 -- -
testcase_73 -- -
testcase_74 -- -
testcase_75 -- -
testcase_76 -- -
testcase_77 -- -
testcase_78 -- -
testcase_79 -- -
testcase_80 -- -
testcase_81 -- -
testcase_82 -- -
testcase_83 -- -
testcase_84 -- -
testcase_85 -- -
testcase_86 -- -
testcase_87 -- -
testcase_88 -- -
testcase_89 -- -
testcase_90 -- -
testcase_91 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#define int long long
const int N=1e6+10,INF=1e18+10;
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[N],g[N];
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;
		for(int i=1;i<=lim;i++) f[i]=INF;
		f[0]=w;
		for(int i=1;i<=n;i++){
			for(int j=0;j<=lim;j++) g[j]=INF;
			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