結果

問題 No.2859 Falling Balls
ユーザー dyktr_06dyktr_06
提出日時 2024-05-13 00:02:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 3,150 bytes
コンパイル時間 2,631 ms
コンパイル使用メモリ 221,476 KB
実行使用メモリ 30,840 KB
最終ジャッジ日時 2024-07-15 14:12:33
合計ジャッジ時間 9,095 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 WA -
testcase_02 AC 2 ms
6,944 KB
testcase_03 WA -
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 1 ms
6,944 KB
testcase_10 AC 75 ms
10,836 KB
testcase_11 AC 277 ms
28,392 KB
testcase_12 AC 12 ms
6,940 KB
testcase_13 AC 254 ms
26,976 KB
testcase_14 AC 222 ms
24,268 KB
testcase_15 AC 72 ms
10,592 KB
testcase_16 AC 101 ms
13,808 KB
testcase_17 AC 108 ms
13,440 KB
testcase_18 AC 10 ms
6,944 KB
testcase_19 AC 159 ms
17,520 KB
testcase_20 AC 328 ms
30,764 KB
testcase_21 AC 326 ms
30,840 KB
testcase_22 AC 312 ms
30,804 KB
testcase_23 AC 320 ms
30,680 KB
testcase_24 AC 314 ms
30,732 KB
testcase_25 AC 305 ms
30,816 KB
testcase_26 AC 318 ms
30,736 KB
testcase_27 AC 318 ms
30,736 KB
testcase_28 AC 320 ms
30,792 KB
testcase_29 AC 323 ms
30,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

template <typename X>
struct SegTree{
    using FX = function<X(X, X)>; // X•X -> X となる関数の型
    int n;
    FX fx;
    const X ex;
    vector<X> dat;

    SegTree(int n_, const FX &fx_, const X &ex_) : n(), fx(fx_), ex(ex_){
        int x = 1;
        while(n_ > x){
            x *= 2;
        }
        n = x;
        dat.assign(n * 2, ex);
    }

    X get(int i) const {
        return dat[i + n];
    }

    void set(int i, const X &x){ dat[i + n] = x; }

    void build(){
        for(int k = n - 1; k >= 1; k--) dat[k] = fx(dat[k * 2], dat[k * 2 + 1]);
    }

    void update(int i, const X &x){
        i += n;
        dat[i] = x;
        while(i > 0){
            i >>= 1;  // parent
            dat[i] = fx(dat[i * 2], dat[i * 2 + 1]);
        }
    }

    X query(int a, int b){
        X vl = ex;
        X vr = ex;
        int l = a + n;
        int r = b + n;
        while(l < r){
            if(l & 1) vl = fx(vl, dat[l++]);
            if(r & 1) vr = fx(dat[--r], vr);
            l >>= 1;
            r >>= 1;
        }
        return fx(vl, vr);
    }

    X operator [](int i) const {
        return dat[i + n];
    }
};

template <typename T>
struct compress{
    vector<T> sorted;
    vector<int> compressed;

    compress(const vector<T> &vec){
        int n = vec.size();
        compressed.resize(n);
        for(T x : vec){
            sorted.emplace_back(x);
        }
        sort(sorted.begin(), sorted.end());
        sorted.erase(unique(sorted.begin(), sorted.end()), sorted.end());
        for(int i = 0; i < n; ++i){
            compressed[i] = lower_bound(sorted.begin(), sorted.end(), vec[i]) - sorted.begin();
        }
    }

    int get(const T &x) const{
        return lower_bound(sorted.begin(), sorted.end(), x) - sorted.begin();
    }

    T inv(const int x) const{
        return sorted[x];
    }

    size_t size() const{
        return sorted.size();
    }

    vector<T> getCompressed() const{
        return compressed;
    }
};

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

    int n;
    long long k;
    cin >> n >> k;
    vector<long long> t(n), x(n), c(n);
    for(int i = 0; i < n; i++){
        cin >> t[i];
    }
    for(int i = 0; i < n; i++){
        cin >> x[i];
    }
    for(int i = 0; i < n; i++){
        cin >> c[i];
    }

    vector<long long> a(n), b(n);
    for(int i = 0; i < n; i++){
        a[i] = k * t[i] + x[i];
        b[i] = k * t[i] - x[i];
    }

    compress<long long> compa(a), compb(b);
    int sizea = compa.size(), sizeb = compb.size();

    SegTree<long long> seg(sizea, [](long long a, long long b){ return max(a, b); }, 0);
    vector<vector<pair<long long, long long>>> v(sizeb);
    for(int i = 0; i < n; i++){
        v[compb.get(b[i])].emplace_back(compa.get(a[i]), c[i]);
    }
    for(int i = 0; i < sizeb; i++){
        sort(v[i].begin(), v[i].end());
    }
    for(int i = 0; i < sizeb; i++){
        for(auto [a, c] : v[i]){
            long long val = seg.query(0, a + 1);
            seg.update(a, val + c);
        }
    }
    cout << seg.query(0, sizea) << "\n";
}
0