結果

問題 No.409 ダイエット
ユーザー vjudge1vjudge1
提出日時 2024-11-12 16:47:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 819 bytes
コンパイル時間 1,607 ms
コンパイル使用メモリ 167,436 KB
実行使用メモリ 25,216 KB
最終ジャッジ日時 2024-11-12 16:47:57
合計ジャッジ時間 44,365 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
24,704 KB
testcase_01 AC 19 ms
19,328 KB
testcase_02 AC 15 ms
19,328 KB
testcase_03 AC 16 ms
19,072 KB
testcase_04 AC 20 ms
19,200 KB
testcase_05 AC 19 ms
19,200 KB
testcase_06 AC 18 ms
19,200 KB
testcase_07 AC 13 ms
19,328 KB
testcase_08 AC 18 ms
19,200 KB
testcase_09 AC 17 ms
19,200 KB
testcase_10 AC 18 ms
19,200 KB
testcase_11 AC 19 ms
19,200 KB
testcase_12 AC 17 ms
19,200 KB
testcase_13 AC 14 ms
19,200 KB
testcase_14 AC 19 ms
19,328 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 15 ms
19,200 KB
testcase_17 AC 15 ms
19,200 KB
testcase_18 AC 16 ms
19,272 KB
testcase_19 AC 17 ms
19,200 KB
testcase_20 AC 16 ms
19,328 KB
testcase_21 AC 16 ms
19,328 KB
testcase_22 AC 14 ms
19,328 KB
testcase_23 AC 15 ms
19,200 KB
testcase_24 AC 13 ms
19,200 KB
testcase_25 AC 20 ms
19,200 KB
testcase_26 AC 15 ms
19,328 KB
testcase_27 AC 18 ms
19,200 KB
testcase_28 AC 14 ms
19,200 KB
testcase_29 AC 18 ms
19,200 KB
testcase_30 AC 18 ms
19,200 KB
testcase_31 AC 16 ms
19,200 KB
testcase_32 AC 18 ms
19,328 KB
testcase_33 AC 17 ms
19,200 KB
testcase_34 AC 16 ms
19,200 KB
testcase_35 AC 1,732 ms
19,200 KB
testcase_36 AC 1,861 ms
19,328 KB
testcase_37 AC 1,816 ms
19,328 KB
testcase_38 AC 1,810 ms
19,200 KB
testcase_39 AC 1,738 ms
19,200 KB
testcase_40 AC 1,869 ms
19,200 KB
testcase_41 AC 1,989 ms
19,536 KB
testcase_42 AC 1,953 ms
19,072 KB
testcase_43 AC 1,786 ms
19,200 KB
testcase_44 AC 1,717 ms
19,200 KB
testcase_45 AC 1,870 ms
19,200 KB
testcase_46 AC 1,894 ms
19,328 KB
testcase_47 AC 1,911 ms
19,328 KB
testcase_48 AC 1,726 ms
19,072 KB
testcase_49 AC 1,923 ms
19,200 KB
testcase_50 AC 1,828 ms
19,328 KB
testcase_51 AC 1,874 ms
19,328 KB
testcase_52 AC 1,960 ms
19,328 KB
testcase_53 AC 1,932 ms
19,328 KB
testcase_54 AC 1,686 ms
19,200 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=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;
		lim=min(lim,1200ll);
		for(int i=1;i<=lim+100;i++) f[i]=INF;
		f[0]=w;
		for(int i=1;i<=n;i++){
			for(int j=0;j<=lim+100;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