結果

問題 No.1826 Fruits Collecting
ユーザー momoyuumomoyuu
提出日時 2023-10-26 14:06:40
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 229 ms / 2,000 ms
コード長 1,248 bytes
コンパイル時間 3,467 ms
コンパイル使用メモリ 262,688 KB
実行使用メモリ 23,492 KB
最終ジャッジ日時 2024-09-25 12:23:37
合計ジャッジ時間 11,881 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 82 ms
12,036 KB
testcase_06 AC 142 ms
19,556 KB
testcase_07 AC 99 ms
12,792 KB
testcase_08 AC 11 ms
6,944 KB
testcase_09 AC 145 ms
14,896 KB
testcase_10 AC 93 ms
12,400 KB
testcase_11 AC 87 ms
12,224 KB
testcase_12 AC 35 ms
7,456 KB
testcase_13 AC 17 ms
6,944 KB
testcase_14 AC 27 ms
6,944 KB
testcase_15 AC 225 ms
23,024 KB
testcase_16 AC 220 ms
23,196 KB
testcase_17 AC 221 ms
23,084 KB
testcase_18 AC 219 ms
23,292 KB
testcase_19 AC 229 ms
23,224 KB
testcase_20 AC 219 ms
23,084 KB
testcase_21 AC 225 ms
23,492 KB
testcase_22 AC 218 ms
23,380 KB
testcase_23 AC 217 ms
23,472 KB
testcase_24 AC 227 ms
23,280 KB
testcase_25 AC 2 ms
6,940 KB
testcase_26 AC 2 ms
6,948 KB
testcase_27 AC 1 ms
6,940 KB
testcase_28 AC 2 ms
6,944 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 42 ms
7,940 KB
testcase_31 AC 85 ms
12,336 KB
testcase_32 AC 41 ms
7,640 KB
testcase_33 AC 146 ms
20,092 KB
testcase_34 AC 128 ms
14,176 KB
testcase_35 AC 28 ms
6,944 KB
testcase_36 AC 145 ms
19,596 KB
testcase_37 AC 86 ms
10,848 KB
testcase_38 AC 58 ms
9,200 KB
testcase_39 AC 99 ms
15,624 KB
testcase_40 AC 129 ms
16,732 KB
testcase_41 AC 27 ms
6,940 KB
testcase_42 AC 5 ms
6,940 KB
testcase_43 AC 2 ms
6,944 KB
testcase_44 AC 1 ms
6,944 KB
testcase_45 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#include<atcoder/segtree>

ll op(ll a,ll b){
    return max(a,b);
}
ll e(){
    return -1e18;
}

int main(){
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    
    int n;
    cin>>n;
    vector<ll> dx;
    vector<ll> t(n),x(n),v(n);
    for(int i = 0;i<n;i++){
        cin>>t[i]>>x[i]>>v[i];
        dx.push_back(t[i]-x[i]);
        dx.push_back(x[i]+t[i]);
    }
    dx.push_back(0);
    vector<int> idx(n);
    for(int i = 0;i<n;i++) idx[i] = i;
    sort(dx.begin(),dx.end());
    dx.erase(unique(dx.begin(),dx.end()),dx.end());
    sort(idx.begin(),idx.end(),[&](int i,int j){
        if(t[i]+x[i]==t[j]+x[j]) return t[i] - x[i] < t[j] - x[j];
        return t[i] + x[i] < t[j] + x[j];});
    ll ans = 0;
    int m = dx.size();
    atcoder::segtree<ll,op,e> seg(m);
    int nk = lower_bound(dx.begin(),dx.end(),0) - dx.begin();
    for(int i = 0;i<n;i++){
        int ni = idx[i];
        int nni = lower_bound(dx.begin(),dx.end(),t[ni]-x[ni]) - dx.begin();
        ll now = seg.prod(0,nni+1) + v[ni];
        if(-t[ni]<=x[ni]&&x[ni]<=t[ni]) now = op(now,v[ni]);
        seg.set(nni,op(seg.get(nni),now));
        ans = max(ans,now);
    }
    cout<<ans<<endl;
    
}
0