結果

問題 No.1014 competitive fighting
ユーザー IKyoproIKyopro
提出日時 2020-03-22 22:59:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 2,441 bytes
コンパイル時間 2,448 ms
コンパイル使用メモリ 221,508 KB
実行使用メモリ 15,360 KB
最終ジャッジ日時 2024-07-07 12:58:53
合計ジャッジ時間 8,412 ms
ジャッジサーバーID
(参考情報)
judge4 / 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 AC 2 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 137 ms
15,360 KB
testcase_06 AC 133 ms
15,232 KB
testcase_07 AC 130 ms
15,360 KB
testcase_08 AC 131 ms
15,360 KB
testcase_09 AC 128 ms
15,360 KB
testcase_10 AC 54 ms
11,060 KB
testcase_11 AC 57 ms
8,832 KB
testcase_12 AC 126 ms
15,360 KB
testcase_13 AC 55 ms
8,960 KB
testcase_14 AC 51 ms
8,576 KB
testcase_15 AC 62 ms
9,472 KB
testcase_16 AC 4 ms
5,376 KB
testcase_17 AC 20 ms
5,632 KB
testcase_18 AC 102 ms
13,440 KB
testcase_19 AC 124 ms
14,976 KB
testcase_20 AC 37 ms
7,808 KB
testcase_21 AC 89 ms
12,800 KB
testcase_22 AC 72 ms
10,368 KB
testcase_23 AC 26 ms
6,272 KB
testcase_24 AC 26 ms
6,272 KB
testcase_25 AC 7 ms
5,376 KB
testcase_26 AC 88 ms
12,544 KB
testcase_27 AC 20 ms
5,632 KB
testcase_28 AC 23 ms
5,888 KB
testcase_29 AC 3 ms
5,376 KB
testcase_30 AC 119 ms
14,976 KB
testcase_31 AC 89 ms
12,928 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 7 ms
5,376 KB
testcase_34 AC 72 ms
12,416 KB
testcase_35 AC 101 ms
14,592 KB
testcase_36 AC 66 ms
11,776 KB
testcase_37 AC 3 ms
5,376 KB
testcase_38 AC 59 ms
10,240 KB
testcase_39 AC 28 ms
6,656 KB
testcase_40 AC 60 ms
9,984 KB
testcase_41 AC 41 ms
8,192 KB
testcase_42 AC 101 ms
14,336 KB
testcase_43 AC 6 ms
5,376 KB
testcase_44 AC 92 ms
13,568 KB
testcase_45 AC 52 ms
9,216 KB
testcase_46 AC 9 ms
5,376 KB
testcase_47 AC 27 ms
6,528 KB
testcase_48 AC 76 ms
12,032 KB
testcase_49 AC 4 ms
5,376 KB
testcase_50 AC 99 ms
13,952 KB
testcase_51 AC 52 ms
9,344 KB
testcase_52 AC 4 ms
5,376 KB
testcase_53 AC 132 ms
15,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
template <class T, class U> using Pa = pair<T, U>;
template <class T> using vec = vector<T>;
template <class T> using vvec = vector<vec<T>>;

template<typename Monoid,typename F>
class SegmentTree{
private:
    int sz;
    vector<Monoid> seg;
    const F op;//演算
    const Monoid e;//単位元
public:
    SegmentTree(int n,const F op,const Monoid &e):op(op),e(e){
        sz = 1;
        while(sz<=n) sz <<= 1;
        seg.assign(2*sz,e);
    }
    void set(int k, const Monoid &x){
        seg[k+sz] = x;
    }
    void build(){
        for(int i=sz-1;i>0;i--){
            seg[i] = op(seg[2*i],seg[2*i+1]);
        }
    }
    void update(int k,const Monoid &x){
        k += sz;
        seg[k] = x;
        while(k>>=1){
            seg[k] = op(seg[2*k],seg[2*k+1]);
        }
    }
    Monoid query(int l,int r){
        Monoid L = e,R = e;
        for(l+=sz,r+=sz;l<r;l>>=1,r>>=1){
            if(l&1) L = op(L,seg[l++]);
            if(r&1) R = op(seg[--r],R);
        }
        return op(L,R);
    }
    Monoid operator[](const int &k)const{
        return seg[k+sz];
    }
};

constexpr ll inf = 1e18;

int main(){
    cin.tie(0);
    ios::sync_with_stdio(false);
    int N;
    cin >> N;
    vec<ll> A(N),B(N),C(N);
    map<ll,ll> cnt;
    for(int i=0;i<N;i++){
        cin >> A[i] >> B[i] >> C[i];
        cnt[A[i]]++;
    }
    vec<int> id(N);
    iota(id.begin(),id.end(),0);
    sort(id.begin(),id.end(),[&](int i,int j){
        if(A[i]!=A[j]) return A[i]<A[j];
        else return B[i]-C[i]<B[j]-C[j];
    });
    vec<ll> dp(N,-1);
    auto mymax = [](ll a,ll b){return max(a,b);};
    SegmentTree<ll,decltype(mymax)> seg(N,mymax,0);
    for(int i=0;i<N;i++) seg.set(i,inf);
    seg.build();
    priority_queue<Pa<ll,ll>,vec<Pa<ll,ll>>,greater<Pa<ll,ll>>> Q;
    for(int i=0;i<N;i++){
        Q.push({B[id[i]]-C[id[i]],i});
        ll ne = (i==N-1? inf:A[id[i+1]]);
        while(!Q.empty()){
            auto p = Q.top();
            if(p.first>=ne) break;
            Q.pop();
            int r = partition_point(id.begin(),id.end(),[&](int x){return p.first>=A[x];})-id.begin();
            seg.update(p.second,0);
            dp[id[p.second]] = min(inf,B[id[p.second]]+seg.query(0,r));
            seg.update(p.second,dp[id[p.second]]);
        }
    }
    for(auto& x:dp){
        if(x==inf) cout << "BAN\n";
        else cout << x << "\n";
    }
}
0