結果

問題 No.409 ダイエット
ユーザー 0w10w1
提出日時 2019-11-26 12:27:36
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 1,725 bytes
コンパイル時間 1,003 ms
コンパイル使用メモリ 85,956 KB
実行使用メモリ 13,716 KB
最終ジャッジ日時 2024-11-06 16:46:57
合計ジャッジ時間 5,929 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 3 ms
6,820 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,820 KB
testcase_11 AC 3 ms
6,816 KB
testcase_12 AC 2 ms
6,816 KB
testcase_13 AC 2 ms
6,816 KB
testcase_14 AC 2 ms
6,820 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 3 ms
6,816 KB
testcase_17 AC 2 ms
6,816 KB
testcase_18 AC 2 ms
6,816 KB
testcase_19 AC 3 ms
6,816 KB
testcase_20 AC 3 ms
6,816 KB
testcase_21 AC 3 ms
6,820 KB
testcase_22 AC 3 ms
6,816 KB
testcase_23 AC 2 ms
6,816 KB
testcase_24 AC 3 ms
6,820 KB
testcase_25 AC 2 ms
6,816 KB
testcase_26 AC 3 ms
6,816 KB
testcase_27 AC 3 ms
6,816 KB
testcase_28 AC 2 ms
6,816 KB
testcase_29 AC 3 ms
6,816 KB
testcase_30 AC 2 ms
6,820 KB
testcase_31 AC 2 ms
6,816 KB
testcase_32 AC 3 ms
6,816 KB
testcase_33 AC 2 ms
6,820 KB
testcase_34 AC 2 ms
6,820 KB
testcase_35 AC 4 ms
6,820 KB
testcase_36 AC 3 ms
6,816 KB
testcase_37 AC 3 ms
6,816 KB
testcase_38 AC 3 ms
6,820 KB
testcase_39 AC 3 ms
6,820 KB
testcase_40 AC 3 ms
6,816 KB
testcase_41 AC 3 ms
6,816 KB
testcase_42 AC 3 ms
6,816 KB
testcase_43 AC 3 ms
6,816 KB
testcase_44 AC 3 ms
6,816 KB
testcase_45 AC 3 ms
6,820 KB
testcase_46 AC 3 ms
6,820 KB
testcase_47 AC 3 ms
6,820 KB
testcase_48 AC 3 ms
6,820 KB
testcase_49 AC 3 ms
6,820 KB
testcase_50 AC 3 ms
6,816 KB
testcase_51 AC 3 ms
6,816 KB
testcase_52 AC 4 ms
6,816 KB
testcase_53 AC 4 ms
6,816 KB
testcase_54 AC 3 ms
6,820 KB
testcase_55 AC 31 ms
9,316 KB
testcase_56 AC 64 ms
13,716 KB
testcase_57 AC 59 ms
10,360 KB
testcase_58 AC 26 ms
7,908 KB
testcase_59 AC 40 ms
9,480 KB
testcase_60 AC 24 ms
7,996 KB
testcase_61 AC 52 ms
10,208 KB
testcase_62 AC 54 ms
10,212 KB
testcase_63 AC 53 ms
10,052 KB
testcase_64 AC 30 ms
9,264 KB
testcase_65 AC 57 ms
10,272 KB
testcase_66 AC 57 ms
10,312 KB
testcase_67 AC 45 ms
9,900 KB
testcase_68 AC 40 ms
9,576 KB
testcase_69 AC 53 ms
10,148 KB
testcase_70 AC 77 ms
10,172 KB
testcase_71 AC 44 ms
7,952 KB
testcase_72 AC 94 ms
10,324 KB
testcase_73 AC 91 ms
10,268 KB
testcase_74 AC 55 ms
8,024 KB
testcase_75 AC 89 ms
10,268 KB
testcase_76 AC 63 ms
9,692 KB
testcase_77 AC 45 ms
8,272 KB
testcase_78 AC 48 ms
9,220 KB
testcase_79 AC 40 ms
7,496 KB
testcase_80 AC 88 ms
10,200 KB
testcase_81 AC 88 ms
10,120 KB
testcase_82 AC 63 ms
10,044 KB
testcase_83 AC 69 ms
9,720 KB
testcase_84 AC 59 ms
9,408 KB
testcase_85 AC 8 ms
6,816 KB
testcase_86 AC 58 ms
9,508 KB
testcase_87 AC 76 ms
10,172 KB
testcase_88 AC 33 ms
8,112 KB
testcase_89 AC 70 ms
9,748 KB
testcase_90 AC 32 ms
7,880 KB
testcase_91 AC 75 ms
9,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <iomanip>
#include <algorithm>
#include <deque>
using namespace std;

#define Inf 1e15
#define maxn 300010

long long d[maxn];
long long dp[maxn][2]; // dp[i][0]: sleep at i day, dp[i][1]: read at i day

struct line { // y = mx + b
	long long m; // slope
	long long b; // intercept
	line(long long m, long long b): m(m), b(b) {}
};

long long foo(line l, long long i, long long a, long long b) { // return dp[i][1] from line l(j)
	return l.m * i + l.b + b * i * (i + 1) / 2 - a * i;
}

double vertex(line l1, line l2) { // the intersection of l1 and l2
	return 1.0 * (l2.b - l1.b) / (l1.m - l2.m);
}

// reamin: w
// days: n
// study 1 day: -a
// study for x days: + x * b
// sleep in i day: + d[i]

int main() {
	long long n, a, b, w;
	cin >> n >> a >> b >> w;
	for (int i = 1; i <= n; i++)
		cin >> d[i];
	dp[0][0] = dp[0][1] = w;
	deque<line> dq;
	dq.push_front(line(0, w)); // sine dp[j][0] = w
	for (long long i = 1; i <= n; i++) {
		dp[i][0] = min(dp[i - 1][0], dp[i - 1][1]) + d[i]; // sleep
		// consider the value of dp[i][1] by subtituting i into dq[0]
		while (dq.size() > 1 && (foo(dq[1], i, a, b) < foo(dq[0], i, a, b)))
			dq.pop_front(); // we no longer need dq[0], pop out
		dp[i][1] = foo(dq[0], i, a, b);
		// cout << dp[i][0] << " " << dp[i][1] << " " << dq.size() << '\n';
		// add line "i" into dq
		line tmp = line(0, 0);
		tmp.m = -1 * i * b; // since this line will be treat as j in the future, the slope's j = i now
		tmp.b = dp[i][0] + b * i * (i - 1) / 2 + i * a;
		while (dq.size() >= 2 && (vertex(dq[dq.size() - 1], dq[dq.size() - 2]) > vertex(tmp, dq[dq.size() - 2])))
			dq.pop_back();
		dq.push_back(tmp);
	}
	cout << min(dp[n][1], dp[n][0]) << '\n';
	return 0;
}
0