結果

問題 No.2808 Concentration
ユーザー zeta7532zeta7532
提出日時 2024-07-09 22:37:34
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 401 ms / 2,000 ms
コード長 2,038 bytes
コンパイル時間 2,726 ms
コンパイル使用メモリ 220,400 KB
実行使用メモリ 28,356 KB
最終ジャッジ日時 2024-07-10 15:19:42
合計ジャッジ時間 19,411 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 400 ms
28,320 KB
testcase_01 AC 401 ms
28,228 KB
testcase_02 AC 393 ms
28,312 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 156 ms
13,316 KB
testcase_07 AC 61 ms
7,296 KB
testcase_08 AC 4 ms
6,940 KB
testcase_09 AC 234 ms
19,572 KB
testcase_10 AC 236 ms
18,616 KB
testcase_11 AC 107 ms
9,984 KB
testcase_12 AC 352 ms
26,264 KB
testcase_13 AC 55 ms
7,040 KB
testcase_14 AC 315 ms
25,348 KB
testcase_15 AC 322 ms
24,632 KB
testcase_16 AC 379 ms
27,152 KB
testcase_17 AC 363 ms
28,156 KB
testcase_18 AC 183 ms
15,328 KB
testcase_19 AC 334 ms
26,876 KB
testcase_20 AC 301 ms
23,928 KB
testcase_21 AC 232 ms
18,124 KB
testcase_22 AC 201 ms
17,316 KB
testcase_23 AC 333 ms
25,724 KB
testcase_24 AC 187 ms
15,328 KB
testcase_25 AC 345 ms
25,384 KB
testcase_26 AC 385 ms
28,196 KB
testcase_27 AC 384 ms
28,196 KB
testcase_28 AC 367 ms
28,200 KB
testcase_29 AC 372 ms
28,356 KB
testcase_30 AC 355 ms
28,240 KB
testcase_31 AC 351 ms
28,192 KB
testcase_32 AC 385 ms
28,352 KB
testcase_33 AC 361 ms
28,192 KB
testcase_34 AC 365 ms
28,312 KB
testcase_35 AC 366 ms
28,260 KB
testcase_36 AC 377 ms
28,276 KB
testcase_37 AC 370 ms
28,348 KB
testcase_38 AC 363 ms
28,240 KB
testcase_39 AC 367 ms
28,236 KB
testcase_40 AC 367 ms
28,196 KB
testcase_41 AC 375 ms
28,236 KB
testcase_42 AC 388 ms
28,276 KB
testcase_43 AC 369 ms
28,244 KB
testcase_44 AC 359 ms
28,264 KB
testcase_45 AC 362 ms
28,264 KB
testcase_46 AC 2 ms
6,940 KB
testcase_47 AC 2 ms
6,944 KB
testcase_48 AC 2 ms
6,940 KB
testcase_49 AC 2 ms
6,940 KB
testcase_50 AC 2 ms
6,944 KB
testcase_51 AC 1 ms
6,944 KB
testcase_52 AC 2 ms
6,940 KB
testcase_53 AC 2 ms
6,940 KB
testcase_54 AC 1 ms
6,940 KB
testcase_55 AC 2 ms
6,944 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=-1LL<<60;
    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];
    }
    vector<ll> sum(N+1,0);
    rep(i,N) sum[i+1]=sum[i]+Z[i];
    RMQ<ll> dp1(N),dp2(N),dp3(N);
    rep(i,N){
        dp1.update(i,0);
        dp2.update(i,0);
        if(Y[i]-X[i]<=S){
            dp1.update(i,Z[i]);
            dp2.update(i,Z[i]);
        }
        dp3.update(i,dp1.query(i,i+1)-sum[i+1]);
    }
    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]);
                dp3.update(i,x+Z[i]-sum[i+1]);
            }
        }
        ll k=lower_bound(all(X),Y[i]-S)-X.begin();
        if(k<i){
            ll x=dp3.query(k,i)+sum[i+1];
            dp2.update(i,x);
        }
    }
    cout << dp2.query(0,N) << endl;
    return 0;
}
0