結果

問題 No.409 ダイエット
ユーザー kotatsugamekotatsugame
提出日時 2021-01-11 05:01:11
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 692 bytes
コンパイル時間 672 ms
コンパイル使用メモリ 74,280 KB
実行使用メモリ 12,248 KB
最終ジャッジ日時 2024-11-21 08:50:32
合計ジャッジ時間 5,240 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,632 KB
testcase_01 AC 3 ms
7,628 KB
testcase_02 AC 3 ms
7,632 KB
testcase_03 AC 3 ms
7,636 KB
testcase_04 AC 3 ms
7,632 KB
testcase_05 AC 2 ms
7,636 KB
testcase_06 AC 2 ms
7,632 KB
testcase_07 AC 2 ms
7,632 KB
testcase_08 AC 2 ms
7,504 KB
testcase_09 AC 2 ms
7,632 KB
testcase_10 AC 3 ms
7,632 KB
testcase_11 AC 2 ms
7,632 KB
testcase_12 AC 2 ms
7,632 KB
testcase_13 AC 2 ms
7,504 KB
testcase_14 AC 2 ms
7,508 KB
testcase_15 AC 2 ms
7,632 KB
testcase_16 AC 3 ms
7,632 KB
testcase_17 AC 2 ms
7,628 KB
testcase_18 AC 2 ms
7,632 KB
testcase_19 AC 2 ms
7,632 KB
testcase_20 AC 3 ms
7,504 KB
testcase_21 AC 3 ms
7,632 KB
testcase_22 AC 3 ms
7,500 KB
testcase_23 AC 2 ms
7,632 KB
testcase_24 AC 2 ms
7,628 KB
testcase_25 AC 2 ms
7,632 KB
testcase_26 AC 2 ms
7,508 KB
testcase_27 AC 2 ms
7,628 KB
testcase_28 AC 2 ms
7,636 KB
testcase_29 AC 2 ms
7,636 KB
testcase_30 AC 3 ms
7,636 KB
testcase_31 AC 2 ms
7,504 KB
testcase_32 AC 2 ms
7,632 KB
testcase_33 AC 2 ms
7,632 KB
testcase_34 AC 2 ms
7,508 KB
testcase_35 AC 3 ms
7,504 KB
testcase_36 AC 4 ms
7,632 KB
testcase_37 AC 3 ms
7,632 KB
testcase_38 AC 3 ms
7,504 KB
testcase_39 AC 3 ms
7,628 KB
testcase_40 AC 3 ms
7,632 KB
testcase_41 AC 3 ms
7,504 KB
testcase_42 AC 4 ms
7,632 KB
testcase_43 AC 3 ms
7,632 KB
testcase_44 AC 4 ms
7,632 KB
testcase_45 AC 3 ms
7,500 KB
testcase_46 AC 3 ms
7,628 KB
testcase_47 AC 3 ms
7,632 KB
testcase_48 AC 3 ms
7,632 KB
testcase_49 AC 3 ms
7,632 KB
testcase_50 AC 3 ms
7,504 KB
testcase_51 AC 4 ms
7,628 KB
testcase_52 AC 4 ms
7,628 KB
testcase_53 AC 4 ms
7,632 KB
testcase_54 AC 3 ms
7,632 KB
testcase_55 AC 32 ms
12,136 KB
testcase_56 AC 59 ms
11,876 KB
testcase_57 AC 63 ms
11,956 KB
testcase_58 AC 29 ms
10,548 KB
testcase_59 AC 41 ms
11,064 KB
testcase_60 AC 26 ms
10,440 KB
testcase_61 AC 56 ms
11,676 KB
testcase_62 AC 59 ms
11,804 KB
testcase_63 AC 55 ms
11,680 KB
testcase_64 AC 31 ms
12,084 KB
testcase_65 AC 59 ms
11,744 KB
testcase_66 AC 62 ms
11,908 KB
testcase_67 AC 46 ms
11,292 KB
testcase_68 AC 39 ms
11,016 KB
testcase_69 AC 55 ms
11,608 KB
testcase_70 AC 81 ms
11,356 KB
testcase_71 AC 46 ms
11,768 KB
testcase_72 AC 98 ms
11,916 KB
testcase_73 AC 92 ms
11,728 KB
testcase_74 AC 56 ms
11,940 KB
testcase_75 AC 90 ms
12,056 KB
testcase_76 AC 66 ms
11,208 KB
testcase_77 AC 46 ms
10,580 KB
testcase_78 AC 50 ms
10,640 KB
testcase_79 AC 41 ms
8,524 KB
testcase_80 AC 93 ms
11,916 KB
testcase_81 AC 90 ms
11,712 KB
testcase_82 AC 66 ms
12,248 KB
testcase_83 AC 71 ms
11,208 KB
testcase_84 AC 60 ms
10,964 KB
testcase_85 AC 9 ms
7,756 KB
testcase_86 AC 59 ms
10,908 KB
testcase_87 AC 81 ms
11,964 KB
testcase_88 AC 34 ms
10,384 KB
testcase_89 AC 69 ms
11,172 KB
testcase_90 AC 33 ms
8,276 KB
testcase_91 AC 74 ms
11,316 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:13:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   13 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<deque>
using namespace std;
int N;
long A,B,W,D[3<<17];
long b[3<<17],dp[3<<17];
long f(int id,int x){return -id*B*x+b[id];}
bool check(int i,int j,int k)
{
	if(B==0)return true;
	return (j-i)*(b[k]-b[j])<=(b[j]-b[i])*(k-j);
}
main()
{
	cin>>N>>A>>B>>W;
	for(int i=0;i<N;i++)cin>>D[i];
	dp[0]=W;
	deque<int>P;
	for(long i=0;i<N;i++)
	{
		b[i]=dp[i]+A*i+i*(i+1)/2*B;
		while(P.size()>=2&&check(P[P.size()-2],P.back(),i))P.pop_back();
		P.push_back(i);
		while(P.size()>=2&&f(P[1],i+1)<=f(P[0],i+1))P.pop_front();
		dp[i+1]=f(P[0],i+1)+D[i]-A*i+i*(i+1)/2*B;
	}
	long ans=9e18;
	for(long i=0;i<=N;i++)ans=min(ans,dp[i]-A*(N-i)+(N-i)*(N-i+1)/2*B);
	cout<<ans<<endl;
}
0