結果

問題 No.1826 Fruits Collecting
ユーザー asaringoasaringo
提出日時 2022-01-31 22:02:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 308 ms / 2,000 ms
コード長 2,352 bytes
コンパイル時間 2,001 ms
コンパイル使用メモリ 197,460 KB
実行使用メモリ 19,292 KB
最終ジャッジ日時 2024-06-11 09:04:53
合計ジャッジ時間 10,398 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
7,680 KB
testcase_01 AC 5 ms
7,680 KB
testcase_02 AC 6 ms
7,680 KB
testcase_03 AC 7 ms
7,552 KB
testcase_04 AC 6 ms
7,552 KB
testcase_05 AC 119 ms
10,836 KB
testcase_06 AC 196 ms
13,140 KB
testcase_07 AC 138 ms
11,860 KB
testcase_08 AC 18 ms
8,064 KB
testcase_09 AC 191 ms
13,136 KB
testcase_10 AC 132 ms
11,732 KB
testcase_11 AC 128 ms
11,612 KB
testcase_12 AC 53 ms
8,916 KB
testcase_13 AC 28 ms
8,276 KB
testcase_14 AC 42 ms
8,560 KB
testcase_15 AC 298 ms
16,852 KB
testcase_16 AC 301 ms
16,720 KB
testcase_17 AC 298 ms
16,724 KB
testcase_18 AC 297 ms
16,852 KB
testcase_19 AC 298 ms
16,724 KB
testcase_20 AC 300 ms
16,724 KB
testcase_21 AC 301 ms
16,724 KB
testcase_22 AC 298 ms
16,732 KB
testcase_23 AC 301 ms
16,728 KB
testcase_24 AC 308 ms
16,732 KB
testcase_25 AC 4 ms
7,680 KB
testcase_26 AC 5 ms
7,552 KB
testcase_27 AC 5 ms
7,552 KB
testcase_28 AC 4 ms
7,552 KB
testcase_29 AC 4 ms
7,552 KB
testcase_30 AC 68 ms
8,628 KB
testcase_31 AC 122 ms
9,680 KB
testcase_32 AC 84 ms
11,604 KB
testcase_33 AC 274 ms
19,292 KB
testcase_34 AC 229 ms
17,748 KB
testcase_35 AC 54 ms
9,940 KB
testcase_36 AC 268 ms
19,164 KB
testcase_37 AC 180 ms
17,112 KB
testcase_38 AC 125 ms
14,032 KB
testcase_39 AC 203 ms
16,340 KB
testcase_40 AC 261 ms
18,768 KB
testcase_41 AC 56 ms
9,936 KB
testcase_42 AC 11 ms
7,936 KB
testcase_43 AC 5 ms
7,552 KB
testcase_44 AC 4 ms
7,552 KB
testcase_45 AC 4 ms
7,552 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std ;
typedef long long ll ;
typedef long double ld ;
typedef pair<ll,ll> P ;
typedef tuple<ll,ll,ll> TP ;
#define chmin(a,b) a = min(a,b)
#define chmax(a,b) a = max(a,b)
#define bit_count(x) __builtin_popcountll(x)
#define gcd(a,b) __gcd(a,b)
#define lcm(a,b) a / gcd(a,b) * b
#define rep(i,n) for(int i = 0 ; i < n ; i++)
#define rrep(i,a,b) for(int i = a ; i < b ; i++)
#define endl "\n"

const int MAX_N = 1 << 18 ;

template<typename T>
struct SegmentTree{
    int n ;
    T dat[2 * MAX_N - 1] ;
    SegmentTree(int n_){
        n = 1 ;
        while(n < n_) n *= 2 ;
        memset(dat,0,sizeof(dat)) ;
    }
    void update(int k , T x){
        k += n - 1 ;
        dat[k] = x ;
        while(k > 0){
            k = (k - 1) / 2 ;
            dat[k] = max(dat[2*k+1],dat[2*k+2]) ;
        }
    }
    T sub_query(int a , int b , int k , int l , int r){
        if(r <= a || b <= l) return -1e18 ;
        if(a <= l && r <= b) return dat[k] ;
        T lef = sub_query(a,b,2*k+1,l,(l+r)/2) ;
        T rig = sub_query(a,b,2*k+2,(l+r)/2,r) ;
        return max(lef,rig) ;
    }
    T query(int a , int b){
        return sub_query(a,b,0,0,n) ;
    }
};

template<typename T> struct Compress{
    vector<int> vec ;
    unordered_map<T,ll> mp ;
    Compress(vector<T> A){
        int n = A.size() ;
        vector<int> B(n) ;
        for(int i = 0 ; i < n ; i++) B[i] = A[i] ;
        vec.resize(n) ;
        sort(A.begin(),A.end()) ;
        for(int i = 0 ; i < n ; i++){
            auto it = lower_bound(A.begin(),A.end(),B[i]) ;
            vec[i] = it - A.begin() ;
            mp[B[i]] = it - A.begin();
        }
    }
    inline int compress(ll i) { return mp[i] ; }
    inline int operator [] (int i) { return vec[i] ; }
};

int n ;
vector<TP> X ;
vector<ll> vec ;

int main(){
    cin >> n ;
    rep(i,n){
        ll t , x , v ;
        cin >> t >> x >> v ;
        if(abs(x)>t) continue ;
        X.push_back({x+t,t-x,v}) ;
        vec.push_back(t-x) ;
    }
    sort(X.begin(),X.end()) ;
    Compress<ll> s(vec) ;
    SegmentTree<ll> segtree(n) ;
    for(int i = X.size() - 1 ; i >= 0 ; i--){
        ll x , y , v ;
        tie(x,y,v) = X[i] ;
        ll k = s.compress(y) ;
        ll val = segtree.query(k,n) ;
        segtree.update(k,val+v) ;
    }
    cout << segtree.query(0,n) << endl ;
}
0