結果

問題 No.2458 Line Up Charged Balls
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-08-10 10:57:12
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 2,646 bytes
コンパイル時間 2,218 ms
コンパイル使用メモリ 207,564 KB
実行使用メモリ 10,272 KB
最終ジャッジ日時 2024-05-05 23:08:29
合計ジャッジ時間 6,080 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 2 ms
6,812 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 104 ms
10,240 KB
testcase_06 AC 104 ms
10,200 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 1 ms
6,944 KB
testcase_09 AC 101 ms
9,472 KB
testcase_10 AC 29 ms
6,944 KB
testcase_11 AC 3 ms
6,940 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 54 ms
6,940 KB
testcase_14 AC 58 ms
6,940 KB
testcase_15 AC 27 ms
6,944 KB
testcase_16 AC 87 ms
10,240 KB
testcase_17 AC 96 ms
10,240 KB
testcase_18 AC 91 ms
10,240 KB
testcase_19 AC 102 ms
10,224 KB
testcase_20 AC 83 ms
10,244 KB
testcase_21 AC 71 ms
10,256 KB
testcase_22 AC 73 ms
10,240 KB
testcase_23 AC 109 ms
10,240 KB
testcase_24 AC 92 ms
10,272 KB
testcase_25 AC 115 ms
10,252 KB
testcase_26 AC 92 ms
10,240 KB
testcase_27 AC 111 ms
10,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;

template<typename T> class CHT {
private:
    struct node {
        node *left, *right;
        static const T inf = numeric_limits<T>::max();
        T a, b;
        node() : node(0, inf){}
        node(const T _a, const T _b)
            : left(nullptr), right(nullptr), a(_a), b(_b){}
        T f(const T x) const { return a * x + b; }
    };
    static void swap(node *x, node *y){
        std::swap(x->a, y->a), std::swap(x->b, y->b);
    }
    void _add_line(node *cur, node *nw, T l, T r){
        while(true){
            if(nw->f(l) < cur->f(l)) swap(cur, nw);
            if(cur->f(r - 1) <= nw->f(r - 1)) break;
            const T mid = (l + r) / 2;
            if(cur->f(mid) <= nw->f(mid)){
                if(!cur->right){
                    cur->right = new node(*nw);
                    break;
                }else{
                    cur = cur->right, l = mid;
                }
            }else{
                swap(cur, nw);
                if(!cur->left){
                    cur->left = new node(*nw);
                    break;
                }else{
                    cur = cur->left, r = mid;
                }
            }
        }
    }
    T query(node *cur, const T k, T l, T r) const {
        T ans = numeric_limits<T>::max();
        while(cur){
            ans = min(ans, cur->f(k));
            const T mid = (l + r) / 2;
            if(k < mid){
                cur = cur->left, r = mid;
            }else{
                cur = cur->right, l = mid;
            }
        }
        return ans;
    }
    void clear(node *cur){
        if(cur->left) clear(cur->left);
        if(cur->right) clear(cur->right);
        delete cur;
    }
    const T lpos, rpos;
    node *root;
public:
    CHT(const T _lpos, const T _rpos) : lpos(_lpos), rpos(_rpos), root(new node()){
        assert(lpos < rpos);
    }
    // ~CHT(){ clear(root); }
    // f(x) = a * x + b を挿入
    void add_line(const T a, const T b){
        node nw(a, b);
        return _add_line(root, &nw, lpos, rpos);
    }
    // x = k での最小値
    T query(const T k) const {
        return query(root, k, lpos, rpos);
    }
};

int main(){

    ll mx=0, N;
    cin >> N;
    vector<ll> dp(N+1, -1e18), A(N+1), B(N);
    for (int i=1; i<=N; i++){
        cin >> A[i];
        B[i-1] = A[i];
    }
    sort(B.begin(), B.end());

    CHT<ll> cht(-1e5-1, 1e5+1);
    cht.add_line(0, 0);

    for (int i=1; i<=N; i++){
        dp[i] = cht.query(A[i]);
        cht.add_line(-A[i], dp[i]);
        mx = max(-dp[i], mx);
    }

    cout << mx << endl;

    return 0;
}
0