結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
7,632 KB
testcase_01 AC 3 ms
7,632 KB
testcase_02 AC 2 ms
7,632 KB
testcase_03 AC 3 ms
7,628 KB
testcase_04 AC 3 ms
7,632 KB
testcase_05 AC 3 ms
7,628 KB
testcase_06 AC 4 ms
7,760 KB
testcase_07 AC 3 ms
7,508 KB
testcase_08 AC 3 ms
7,628 KB
testcase_09 AC 2 ms
7,628 KB
testcase_10 AC 3 ms
7,628 KB
testcase_11 AC 3 ms
7,636 KB
testcase_12 AC 3 ms
7,508 KB
testcase_13 AC 3 ms
7,632 KB
testcase_14 AC 3 ms
7,632 KB
testcase_15 AC 2 ms
7,500 KB
testcase_16 AC 2 ms
7,632 KB
testcase_17 AC 3 ms
7,636 KB
testcase_18 AC 3 ms
7,636 KB
testcase_19 AC 3 ms
7,628 KB
testcase_20 AC 3 ms
7,632 KB
testcase_21 AC 2 ms
7,628 KB
testcase_22 AC 2 ms
7,628 KB
testcase_23 AC 3 ms
7,632 KB
testcase_24 AC 3 ms
7,628 KB
testcase_25 AC 3 ms
7,504 KB
testcase_26 AC 3 ms
7,628 KB
testcase_27 AC 3 ms
7,628 KB
testcase_28 AC 2 ms
7,632 KB
testcase_29 AC 3 ms
7,760 KB
testcase_30 AC 3 ms
7,628 KB
testcase_31 AC 3 ms
7,632 KB
testcase_32 AC 3 ms
7,632 KB
testcase_33 AC 3 ms
7,628 KB
testcase_34 AC 3 ms
7,632 KB
testcase_35 AC 4 ms
7,632 KB
testcase_36 AC 3 ms
7,636 KB
testcase_37 AC 4 ms
7,632 KB
testcase_38 AC 4 ms
7,632 KB
testcase_39 AC 4 ms
7,628 KB
testcase_40 AC 4 ms
7,628 KB
testcase_41 AC 4 ms
7,632 KB
testcase_42 AC 4 ms
7,632 KB
testcase_43 AC 4 ms
7,632 KB
testcase_44 AC 4 ms
7,628 KB
testcase_45 AC 4 ms
7,628 KB
testcase_46 AC 4 ms
7,632 KB
testcase_47 AC 4 ms
7,636 KB
testcase_48 AC 4 ms
7,628 KB
testcase_49 AC 3 ms
7,764 KB
testcase_50 AC 4 ms
7,636 KB
testcase_51 AC 4 ms
7,636 KB
testcase_52 AC 4 ms
7,632 KB
testcase_53 AC 4 ms
7,636 KB
testcase_54 AC 4 ms
7,636 KB
testcase_55 AC 34 ms
10,708 KB
testcase_56 AC 59 ms
12,632 KB
testcase_57 AC 63 ms
11,956 KB
testcase_58 AC 29 ms
10,540 KB
testcase_59 AC 42 ms
11,196 KB
testcase_60 AC 26 ms
10,468 KB
testcase_61 AC 56 ms
11,676 KB
testcase_62 AC 58 ms
12,184 KB
testcase_63 AC 57 ms
11,776 KB
testcase_64 AC 32 ms
10,700 KB
testcase_65 AC 59 ms
11,828 KB
testcase_66 AC 62 ms
11,780 KB
testcase_67 AC 48 ms
11,272 KB
testcase_68 AC 41 ms
11,972 KB
testcase_69 AC 55 ms
11,612 KB
testcase_70 AC 82 ms
11,504 KB
testcase_71 AC 48 ms
10,760 KB
testcase_72 AC 99 ms
11,916 KB
testcase_73 AC 93 ms
12,048 KB
testcase_74 AC 58 ms
11,036 KB
testcase_75 AC 93 ms
11,736 KB
testcase_76 AC 67 ms
11,040 KB
testcase_77 AC 47 ms
8,528 KB
testcase_78 AC 52 ms
10,744 KB
testcase_79 AC 42 ms
8,528 KB
testcase_80 AC 95 ms
11,912 KB
testcase_81 AC 93 ms
11,720 KB
testcase_82 AC 68 ms
11,292 KB
testcase_83 AC 73 ms
11,432 KB
testcase_84 AC 61 ms
10,900 KB
testcase_85 AC 10 ms
7,756 KB
testcase_86 AC 61 ms
10,892 KB
testcase_87 AC 81 ms
11,452 KB
testcase_88 AC 36 ms
8,276 KB
testcase_89 AC 71 ms
11,344 KB
testcase_90 AC 34 ms
10,432 KB
testcase_91 AC 75 ms
11,188 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