結果

問題 No.409 ダイエット
ユーザー ningenMeningenMe
提出日時 2020-07-27 02:09:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 6,627 bytes
コンパイル時間 2,765 ms
コンパイル使用メモリ 208,816 KB
実行使用メモリ 11,904 KB
最終ジャッジ日時 2023-09-11 05:32:39
合計ジャッジ時間 9,217 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 1 ms
4,384 KB
testcase_02 AC 2 ms
4,384 KB
testcase_03 AC 1 ms
4,384 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 2 ms
4,380 KB
testcase_06 AC 1 ms
4,380 KB
testcase_07 AC 2 ms
4,388 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 2 ms
4,380 KB
testcase_10 AC 1 ms
4,384 KB
testcase_11 AC 2 ms
4,380 KB
testcase_12 AC 1 ms
4,384 KB
testcase_13 AC 1 ms
4,384 KB
testcase_14 AC 2 ms
4,380 KB
testcase_15 AC 2 ms
4,384 KB
testcase_16 AC 1 ms
4,384 KB
testcase_17 AC 2 ms
4,380 KB
testcase_18 AC 1 ms
4,384 KB
testcase_19 AC 2 ms
4,380 KB
testcase_20 AC 1 ms
4,380 KB
testcase_21 AC 2 ms
4,384 KB
testcase_22 AC 1 ms
4,380 KB
testcase_23 AC 1 ms
4,380 KB
testcase_24 AC 2 ms
4,380 KB
testcase_25 AC 1 ms
4,380 KB
testcase_26 AC 2 ms
4,380 KB
testcase_27 AC 2 ms
4,384 KB
testcase_28 AC 1 ms
4,380 KB
testcase_29 AC 2 ms
4,380 KB
testcase_30 AC 2 ms
4,380 KB
testcase_31 AC 1 ms
4,384 KB
testcase_32 AC 2 ms
4,384 KB
testcase_33 AC 1 ms
4,380 KB
testcase_34 AC 2 ms
4,380 KB
testcase_35 AC 3 ms
4,380 KB
testcase_36 AC 3 ms
4,380 KB
testcase_37 AC 3 ms
4,380 KB
testcase_38 AC 3 ms
4,384 KB
testcase_39 AC 3 ms
4,384 KB
testcase_40 AC 3 ms
4,380 KB
testcase_41 AC 3 ms
4,380 KB
testcase_42 AC 3 ms
4,380 KB
testcase_43 AC 3 ms
4,384 KB
testcase_44 AC 3 ms
4,384 KB
testcase_45 AC 3 ms
4,380 KB
testcase_46 AC 3 ms
4,384 KB
testcase_47 AC 3 ms
4,380 KB
testcase_48 AC 3 ms
4,384 KB
testcase_49 AC 3 ms
4,380 KB
testcase_50 AC 2 ms
4,380 KB
testcase_51 AC 2 ms
4,380 KB
testcase_52 AC 3 ms
4,380 KB
testcase_53 AC 3 ms
4,380 KB
testcase_54 AC 3 ms
4,384 KB
testcase_55 AC 51 ms
7,136 KB
testcase_56 AC 53 ms
7,448 KB
testcase_57 AC 109 ms
11,904 KB
testcase_58 AC 44 ms
6,728 KB
testcase_59 AC 63 ms
7,400 KB
testcase_60 AC 40 ms
6,144 KB
testcase_61 AC 94 ms
10,396 KB
testcase_62 AC 102 ms
11,628 KB
testcase_63 AC 93 ms
9,920 KB
testcase_64 AC 48 ms
6,464 KB
testcase_65 AC 92 ms
8,880 KB
testcase_66 AC 104 ms
10,656 KB
testcase_67 AC 79 ms
9,340 KB
testcase_68 AC 62 ms
7,228 KB
testcase_69 AC 90 ms
9,672 KB
testcase_70 AC 114 ms
9,968 KB
testcase_71 AC 63 ms
6,968 KB
testcase_72 AC 141 ms
11,740 KB
testcase_73 AC 126 ms
9,392 KB
testcase_74 AC 81 ms
8,140 KB
testcase_75 AC 128 ms
9,908 KB
testcase_76 AC 93 ms
8,928 KB
testcase_77 AC 60 ms
5,880 KB
testcase_78 AC 70 ms
7,560 KB
testcase_79 AC 55 ms
6,176 KB
testcase_80 AC 133 ms
11,212 KB
testcase_81 AC 125 ms
9,660 KB
testcase_82 AC 94 ms
8,652 KB
testcase_83 AC 101 ms
8,952 KB
testcase_84 AC 81 ms
7,036 KB
testcase_85 AC 10 ms
4,384 KB
testcase_86 AC 79 ms
6,996 KB
testcase_87 AC 115 ms
10,164 KB
testcase_88 AC 45 ms
5,392 KB
testcase_89 AC 90 ms
6,408 KB
testcase_90 AC 41 ms
4,960 KB
testcase_91 AC 96 ms
6,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using ull = unsigned long long;
 
#define REP(i,n) for(long long i = 0; i < (n); i++)
#define FOR(i, m, n) for(long long i = (m);i < (n); ++i)
#define ALL(obj) (obj).begin(),(obj).end()
#define SPEED cin.tie(0);ios::sync_with_stdio(false);
 
template<class T> using V = vector<T>;
template<class T, class U> using P = pair<T, U>;
template<class T> using PQ = priority_queue<T>;
template<class T> using PQR = priority_queue<T,vector<T>,greater<T>>;
 
constexpr long long MOD = (long long)1e9 + 7;
constexpr long long MOD2 = 998244353;
constexpr long long HIGHINF = (long long)1e18;
constexpr long long LOWINF = (long long)1e15;
constexpr long double PI = 3.1415926535897932384626433;
 
template <class T> vector<T> multivector(size_t N,T init){return vector<T>(N,init);}
template <class... T> auto multivector(size_t N,T... t){return vector<decltype(multivector(t...))>(N,multivector(t...));}
template <class T> void corner(bool flg, T hoge) {if (flg) {cout << hoge << endl; exit(0);}}
template <class T, class U>ostream &operator<<(ostream &o, const map<T, U>&obj) {o << "{"; for (auto &x : obj) o << " {" << x.first << " : " << x.second << "}" << ","; o << " }"; return o;}
template <class T>ostream &operator<<(ostream &o, const set<T>&obj) {o << "{"; for (auto itr = obj.begin(); itr != obj.end(); ++itr) o << (itr != obj.begin() ? ", " : "") << *itr; o << "}"; return o;}
template <class T>ostream &operator<<(ostream &o, const multiset<T>&obj) {o << "{"; for (auto itr = obj.begin(); itr != obj.end(); ++itr) o << (itr != obj.begin() ? ", " : "") << *itr; o << "}"; return o;}
template <class T>ostream &operator<<(ostream &o, const vector<T>&obj) {o << "{"; for (int i = 0; i < (int)obj.size(); ++i)o << (i > 0 ? ", " : "") << obj[i]; o << "}"; return o;}
template <class T, class U>ostream &operator<<(ostream &o, const pair<T, U>&obj) {o << "{" << obj.first << ", " << obj.second << "}"; return o;}
template <template <class tmp>  class T, class U> ostream &operator<<(ostream &o, const T<U> &obj) {o << "{"; for (auto itr = obj.begin(); itr != obj.end(); ++itr)o << (itr != obj.begin() ? ", " : "") << *itr; o << "}"; return o;}
void print(void) {cout << endl;}
template <class Head> void print(Head&& head) {cout << head;print();}
template <class Head, class... Tail> void print(Head&& head, Tail&&... tail) {cout << head << " ";print(forward<Tail>(tail)...);}
template <class T> void chmax(T& a, const T b){a=max(a,b);}
template <class T> void chmin(T& a, const T b){a=min(a,b);}
void YN(bool flg) {cout << (flg ? "YES" : "NO") << endl;}
void Yn(bool flg) {cout << (flg ? "Yes" : "No") << endl;}
void yn(bool flg) {cout << (flg ? "yes" : "no") << endl;}

/*
 * @title ConvexHullTrickMonotone
 */
template<class Operator> class ConvexHullTrickMonotone {
private:
	using TypeValue = typename Operator::TypeValue;

	//front->backに向かって傾きがa1<a2<...<aN
	deque<pair<TypeValue,TypeValue>> lines;

	//3直線に関してline2が必要か確認 (このとき a1 < a2 < a3が必要=dequeの順そのまま)
	inline int is_required(const pair<TypeValue,TypeValue>& line1, const pair<TypeValue,TypeValue>& line2, const pair<TypeValue,TypeValue>& line3) {
		return Operator::func_compare((line2.second-line3.second)*(line2.first-line1.first),(line1.second-line2.second)*(line3.first-line2.first));
	}

	//y=ax+bの値
	inline TypeValue y(const pair<TypeValue,TypeValue> line, TypeValue x) {
		return line.first * x + line.second;
	}

	inline void insert_back(const pair<TypeValue,TypeValue> line){
		//傾きが同じとき
		if(lines.size() && lines.back().first == line.first){
			if(Operator::func_compare(lines.back().second,line.second)) return;
			else lines.pop_back();
		}
		//不必要な直線を取り除く
		while (lines.size() > 1 && !is_required(lines[(int)lines.size()-2], lines[(int)lines.size()-1],line)) lines.pop_back();
		//backにinsert
		lines.push_back(line);
	}
	inline void insert_front(const pair<TypeValue,TypeValue> line){
		//傾きが同じとき
		if(lines.size() && lines.front().first == line.first){
			if(Operator::func_compare(lines.front().second,line.second)) return;
			else lines.pop_front();
		}
		//不必要な直線を取り除く
		while (lines.size() > 1 && !is_required(line, lines[0], lines[1])) lines.pop_front();
		//frontにinsert
		lines.push_front(line);
	}
public:
	ConvexHullTrickMonotone() {
		// do nothing
	} 
	void insert(const TypeValue a, const TypeValue b) {
		insert({a,b});
	}
	//傾きの大きさが最大or最小になるようにinsertする
	void insert(const pair<TypeValue,TypeValue> line) {
		if(lines.empty() || line.first <= lines.front().first) insert_front(line);
		else if(lines.back().first <= line.first) insert_back(line);
		else assert(false);
	}
	//O(log(N))
	TypeValue get(TypeValue x) {
		if(lines.empty()) return Operator::unit_value;
		int ng = -1, ok = (int)lines.size()-1, md;
		while (ok - ng > 1) {
			md = (ok + ng) >> 1;
			( Operator::func_compare(y(lines[md],x),y(lines[md+1],x)) ?ok:ng)=md;
		}
		return y(lines[ok],x);
	}
	//O(log(N))
	pair<TypeValue,TypeValue> get_line(TypeValue x) {
		if(lines.empty()) return {0,Operator::unit_value};
		int ng = -1, ok = (int)lines.size()-1, md;
		while (ok - ng > 1) {
			md = (ok + ng) >> 1;
			( Operator::func_compare(y(lines[md],x),y(lines.get[md+1],x)) ?ok:ng)=md;
		}
		return lines[ok];
	}
};

//最小値クエリ
template<class T> struct ValueMin {
	using TypeValue = T;
	inline static constexpr TypeValue unit_value = 3e18;
	inline static constexpr bool func_compare(TypeValue l,TypeValue r){return l<r;}
};
//傾きがa1>=a2>=a3...となるようにinsertする

//最大値クエリ
template<class T> struct ValueMax {
	using TypeValue = T;
	inline static constexpr TypeValue unit_value = -3e18;
	inline static constexpr bool func_compare(TypeValue l,TypeValue r){return l>r;}
};
//傾きがa1<=a2<=a3...となるようにinsertする

int main() {
	ll N,A,B,W; cin >> N >> A >> B >> W;
	vector<ll> D(N+2,0);
	for(int i = 1; i <= N; ++i) cin >> D[i];
	// dp[i]=min{j:[0,i)}-> dp[j]+B*k*(k+1)/2-k*A+D[i] (k=i-j-1)
	//                   -> dp[j]+B*(i-j-1)*(i-j)/2-(i-j-1)*A+D[i]
	//                   -> dp[j]+B/2*(i*i-2*i*j+j*j-i+j)-A*(i-j-1)+D[i]
	//                   -> (-B*j)*i  +  dp[j]+B/2*(j*j+j)+A*j  +  B/2*(i*i-i)-A*(i-1)+D[i] 
	vector<ll> dp(N+2,LOWINF);
	dp[0]=W;
	ConvexHullTrickMonotone<ValueMin<ll>> cht;
	cht.insert(0,dp[0]);
	for(ll i=1;i<=N+1;++i){
		dp[i]=cht.get(i)+B*(i*i-i)/2-A*(i-1)+D[i];
		cht.insert(-B*i,dp[i]+B*(i*i+i)/2+A*i);
	}
	cout << dp[N+1] << endl;
    return 0;
}
0