結果

問題 No.2808 Concentration
ユーザー zeta7532zeta7532
提出日時 2024-07-09 22:01:22
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,865 bytes
コンパイル時間 2,774 ms
コンパイル使用メモリ 216,720 KB
実行使用メモリ 17,176 KB
最終ジャッジ日時 2024-07-09 22:01:31
合計ジャッジ時間 8,547 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,752 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 TLE -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
testcase_50 -- -
testcase_51 -- -
testcase_52 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#pragma GCC target("avx2")
#pragma GCC optimize("O3")
#pragma GCC optimize("unroll-loops")
using namespace std;
using ll = long long;
const ll mod = 998244353;
#define fi first
#define se second
#define rep(i,n) for(ll i=0;i<n;i++)
#define all(x) x.begin(),x.end()
#define faster ios::sync_with_stdio(false);cin.tie(nullptr)

template<typename T>
struct RMQ{
    const T INF=0;
    ll N;
    vector<T> dat;
    RMQ(ll N_):N(),dat(N_*4,INF){
        ll x=1;
        while(N_>x) x*=2;
        N=x;
    }
    void update(ll i,T x){
        i+=N-1;
        dat[i]=max(dat[i],x);
        while(i>0){
            i=(i-1)/2;
            dat[i]=max(dat[i*2+1],dat[i*2+2]);
        }
    }
    T query(ll a,ll b){return query_sub(a,b,0,0,N);}
    T query_sub(ll a,ll b,ll k,ll l,ll r){
        if(r<=a||b<=l){
            return INF;
        }else if(a<=l&&r<=b){
            return dat[k];
        }else{
            T vl=query_sub(a,b,k*2+1,l,(l+r)/2);
            T vr=query_sub(a,b,k*2+2,(l+r)/2,r);
            return max(vl,vr);
        }
    }
};

int main() {
    ll N,S,H;
    cin >> N >> S >> H;
    vector<ll> X(N),Y(N),Z(N);
    rep(i,N){
        cin >> X[i] >> Y[i] >> Z[i];
    }
    RMQ<ll> dp1(N),dp2(N);
    rep(i,N) if(Y[i]-X[i]<=S){
        dp1.update(i,Z[i]);
        dp2.update(i,Z[i]);
    }
    rep(i,N){
        rep(j,i){
            if(Y[i]-X[i]<=S){
                ll k=upper_bound(all(Y),X[i]-H)-Y.begin();
                if(k>0){
                    ll x=dp2.query(0,k);
                    dp1.update(i,x+Z[i]);
                    dp2.update(i,x+Z[i]);
                }
            }
            ll k=lower_bound(all(X),Y[i]-S)-X.begin();
            if(k<i){
                ll x=dp1.query(k,i);
                dp2.update(i,x+Z[i]);
            }
        }
    }
    cout << dp2.query(0,N) << endl;
    return 0;
}
0