結果

問題 No.409 ダイエット
ユーザー vjudge1vjudge1
提出日時 2024-11-12 16:44:28
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 810 bytes
コンパイル時間 1,752 ms
コンパイル使用メモリ 168,436 KB
実行使用メモリ 19,568 KB
最終ジャッジ日時 2024-11-12 16:45:04
合計ジャッジ時間 34,489 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
19,568 KB
testcase_01 AC 13 ms
11,472 KB
testcase_02 AC 11 ms
11,596 KB
testcase_03 AC 12 ms
12,108 KB
testcase_04 AC 14 ms
11,984 KB
testcase_05 AC 13 ms
11,984 KB
testcase_06 AC 16 ms
12,240 KB
testcase_07 AC 10 ms
12,108 KB
testcase_08 AC 13 ms
12,364 KB
testcase_09 AC 14 ms
12,748 KB
testcase_10 AC 13 ms
11,472 KB
testcase_11 AC 15 ms
13,256 KB
testcase_12 AC 13 ms
11,464 KB
testcase_13 AC 12 ms
12,872 KB
testcase_14 AC 13 ms
12,232 KB
testcase_15 AC 3 ms
6,816 KB
testcase_16 AC 11 ms
11,856 KB
testcase_17 AC 12 ms
12,364 KB
testcase_18 AC 13 ms
11,856 KB
testcase_19 AC 12 ms
11,596 KB
testcase_20 AC 12 ms
11,468 KB
testcase_21 AC 11 ms
11,728 KB
testcase_22 AC 10 ms
12,364 KB
testcase_23 AC 9 ms
11,592 KB
testcase_24 AC 10 ms
12,236 KB
testcase_25 AC 13 ms
11,728 KB
testcase_26 AC 11 ms
12,496 KB
testcase_27 AC 15 ms
12,620 KB
testcase_28 AC 9 ms
12,108 KB
testcase_29 AC 11 ms
11,980 KB
testcase_30 AC 14 ms
11,724 KB
testcase_31 AC 11 ms
11,728 KB
testcase_32 AC 13 ms
12,108 KB
testcase_33 AC 12 ms
11,856 KB
testcase_34 AC 11 ms
12,112 KB
testcase_35 AC 1,251 ms
11,464 KB
testcase_36 AC 1,347 ms
12,492 KB
testcase_37 AC 1,298 ms
11,596 KB
testcase_38 AC 1,291 ms
11,592 KB
testcase_39 AC 1,275 ms
12,240 KB
testcase_40 AC 1,362 ms
12,108 KB
testcase_41 WA -
testcase_42 AC 1,392 ms
11,852 KB
testcase_43 WA -
testcase_44 AC 1,225 ms
11,724 KB
testcase_45 WA -
testcase_46 AC 1,366 ms
13,132 KB
testcase_47 AC 1,357 ms
11,596 KB
testcase_48 AC 1,244 ms
11,340 KB
testcase_49 WA -
testcase_50 AC 1,324 ms
11,724 KB
testcase_51 AC 1,378 ms
11,600 KB
testcase_52 WA -
testcase_53 AC 1,378 ms
12,360 KB
testcase_54 AC 1,228 ms
13,008 KB
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=1e9+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;
		lim=min(lim,1200);
		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