結果

問題 No.2859 Falling Balls
ユーザー tottoripapertottoripaper
提出日時 2024-08-28 02:18:44
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 160 ms / 3,000 ms
コード長 2,274 bytes
コンパイル時間 3,025 ms
コンパイル使用メモリ 222,016 KB
実行使用メモリ 21,180 KB
最終ジャッジ日時 2024-08-28 02:18:52
合計ジャッジ時間 6,789 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 56 ms
7,812 KB
testcase_11 AC 136 ms
19,464 KB
testcase_12 AC 9 ms
6,944 KB
testcase_13 AC 128 ms
19,424 KB
testcase_14 AC 116 ms
18,076 KB
testcase_15 AC 43 ms
7,764 KB
testcase_16 AC 58 ms
10,256 KB
testcase_17 AC 55 ms
11,296 KB
testcase_18 AC 7 ms
6,940 KB
testcase_19 AC 77 ms
12,052 KB
testcase_20 AC 148 ms
20,460 KB
testcase_21 AC 148 ms
20,272 KB
testcase_22 AC 151 ms
20,488 KB
testcase_23 AC 151 ms
20,468 KB
testcase_24 AC 150 ms
20,508 KB
testcase_25 AC 160 ms
20,172 KB
testcase_26 AC 148 ms
20,340 KB
testcase_27 AC 146 ms
20,340 KB
testcase_28 AC 150 ms
21,180 KB
testcase_29 AC 151 ms
20,404 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){
        numLeave = 1;
        while(numLeave < n){numLeave *= 2;}
        data.resize(numLeave * 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{{0, 0, 0}};
    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+1;i++){
        snd(points[i]) = std::lower_bound(std::begin(beta), std::end(beta), snd(points[i])) - std::begin(beta);
    }

    SegmentTree seg(beta.size());
    for(int i=0;i<N+1;i++){
        auto [a, b, c] = points[i];
        if(a == 0){
            seg.set(std::lower_bound(std::begin(beta), std::end(beta), 0) - std::begin(beta), 0);
        }else{
            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