結果

問題 No.2859 Falling Balls
ユーザー tottoripapertottoripaper
提出日時 2024-08-28 02:05:30
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,203 bytes
コンパイル時間 3,034 ms
コンパイル使用メモリ 219,888 KB
実行使用メモリ 19,520 KB
最終ジャッジ日時 2024-08-28 02:05:39
合計ジャッジ時間 7,281 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 WA -
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 43 ms
7,496 KB
testcase_11 AC 139 ms
17,436 KB
testcase_12 AC 9 ms
6,940 KB
testcase_13 AC 129 ms
16,872 KB
testcase_14 AC 113 ms
16,824 KB
testcase_15 AC 42 ms
7,452 KB
testcase_16 AC 58 ms
9,432 KB
testcase_17 AC 55 ms
10,088 KB
testcase_18 AC 7 ms
6,944 KB
testcase_19 AC 82 ms
11,220 KB
testcase_20 AC 156 ms
18,424 KB
testcase_21 AC 160 ms
19,520 KB
testcase_22 AC 156 ms
18,472 KB
testcase_23 AC 154 ms
18,776 KB
testcase_24 AC 154 ms
18,428 KB
testcase_25 AC 155 ms
19,092 KB
testcase_26 AC 154 ms
18,492 KB
testcase_27 AC 154 ms
18,552 KB
testcase_28 AC 154 ms
18,700 KB
testcase_29 AC 154 ms
18,524 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define snd(t) std::get<1>(t)

using ll = std::int64_t;
using TR = std::tuple<ll, ll, ll>;

struct SegmentTree{
    int numLeave;
    std::vector<ll> data;

    SegmentTree(int n){
        int m = 1;
        while(m < n){m *= 2;}
        numLeave = m;
        data = std::vector<ll>(m * 2, std::numeric_limits<ll>::min());
    }

    void set(int k, ll v){
        k += numLeave;
        data[k] = v;
        while(k >= 2){
            k /= 2;
            data[k] = std::max(data[2 * k], data[2 * k + 1]);
        }
    }

    ll max(int l, int r){
        l += numLeave;
        r += numLeave;
        ll res = std::numeric_limits<ll>::min();
        while(l < r){
            if(l & 1){res = std::max(res, data[l]); l += 1;}
            if(r & 1){r -= 1; res = std::max(res, data[r]);}
            l /= 2; r /= 2;
        }
        return res;
    }

    ll get(int k){
        return data[k + numLeave];
    }
};

int main(){
    std::cin.tie(nullptr);
    std::ios::sync_with_stdio(false);

    int N;
    ll K;
    std::cin >> N >> K;

    std::vector<ll> T(N), X(N), C(N);
    for(int i=0;i<N;i++){
        std::cin >> T[i];
    }
    for(int i=0;i<N;i++){
        std::cin >> X[i];
    }
    for(int i=0;i<N;i++){
        std::cin >> C[i];
    }

    std::vector<TR> points;
    std::vector<ll> beta{0};
    for(int i=0;i<N;i++){
        ll a = X[i] + K * T[i], b = -X[i] + K * T[i];
        points.emplace_back(a, b, C[i]);
        beta.emplace_back(b);
    }
    std::sort(std::begin(points), std::end(points));
    std::sort(std::begin(beta), std::end(beta));
    beta.erase(std::unique(std::begin(beta), std::end(beta)), std::end(beta));

    for(int i=0;i<N;i++){
        snd(points[i]) = std::lower_bound(std::begin(beta), std::end(beta), snd(points[i])) - std::begin(beta);
    }

    SegmentTree seg(beta.size());
    seg.set(std::lower_bound(std::begin(beta), std::end(beta), 0) - std::begin(beta), 0);
    for(int i=0;i<N;i++){
        auto [_, b, c] = points[i];
        ll v = seg.max(0, b + 1);
        if(v != std::numeric_limits<ll>::min()){v += c;}
        seg.set(b, v);
    }

    ll res = seg.max(0, beta.size());
    std::cout << res << std::endl;
}
0