結果

問題 No.2808 Concentration
ユーザー zeta7532zeta7532
提出日時 2024-07-09 22:02:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,785 bytes
コンパイル時間 2,954 ms
コンパイル使用メモリ 215,776 KB
実行使用メモリ 20,608 KB
最終ジャッジ日時 2024-07-09 22:03:16
合計ジャッジ時間 17,414 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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){
        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