結果

問題 No.1014 competitive fighting
ユーザー otamay6otamay6
提出日時 2020-03-08 12:44:42
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 2,773 bytes
コンパイル時間 2,625 ms
コンパイル使用メモリ 201,572 KB
実行使用メモリ 10,120 KB
最終ジャッジ日時 2024-05-08 12:20:50
合計ジャッジ時間 13,727 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 2 ms
5,376 KB
testcase_05 AC 276 ms
10,116 KB
testcase_06 AC 266 ms
10,116 KB
testcase_07 AC 277 ms
10,112 KB
testcase_08 AC 247 ms
10,120 KB
testcase_09 AC 273 ms
10,120 KB
testcase_10 RE -
testcase_11 AC 186 ms
10,116 KB
testcase_12 AC 1,991 ms
10,120 KB
testcase_13 AC 223 ms
6,912 KB
testcase_14 AC 102 ms
6,528 KB
testcase_15 AC 129 ms
6,784 KB
testcase_16 AC 6 ms
5,376 KB
testcase_17 AC 42 ms
5,376 KB
testcase_18 AC 192 ms
9,280 KB
testcase_19 AC 268 ms
10,032 KB
testcase_20 AC 84 ms
6,272 KB
testcase_21 AC 210 ms
8,928 KB
testcase_22 AC 372 ms
7,168 KB
testcase_23 AC 55 ms
5,376 KB
testcase_24 AC 56 ms
5,376 KB
testcase_25 AC 14 ms
5,376 KB
testcase_26 AC 209 ms
8,880 KB
testcase_27 AC 42 ms
5,376 KB
testcase_28 AC 47 ms
5,376 KB
testcase_29 AC 3 ms
5,376 KB
testcase_30 AC 371 ms
10,004 KB
testcase_31 AC 200 ms
8,992 KB
testcase_32 AC 4 ms
5,376 KB
testcase_33 AC 12 ms
5,376 KB
testcase_34 AC 133 ms
8,748 KB
testcase_35 AC 175 ms
10,004 KB
testcase_36 AC 119 ms
8,412 KB
testcase_37 AC 6 ms
5,376 KB
testcase_38 AC 110 ms
7,296 KB
testcase_39 AC 56 ms
5,376 KB
testcase_40 AC 108 ms
7,168 KB
testcase_41 AC 75 ms
6,400 KB
testcase_42 AC 169 ms
9,768 KB
testcase_43 AC 10 ms
5,376 KB
testcase_44 AC 152 ms
9,368 KB
testcase_45 AC 91 ms
6,912 KB
testcase_46 AC 17 ms
5,376 KB
testcase_47 AC 51 ms
5,376 KB
testcase_48 AC 126 ms
8,640 KB
testcase_49 AC 7 ms
5,376 KB
testcase_50 AC 159 ms
9,508 KB
testcase_51 AC 94 ms
6,912 KB
testcase_52 AC 7 ms
5,376 KB
testcase_53 AC 290 ms
10,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define REP(i,n) for(int i=0,i##_len=int(n);i<i##_len;++i)
#define rep(i,a,b) for(int i=int(a);i<int(b);++i)
#define All(x) (x).begin(),(x).end()
#define rAll(x) (x).rbegin(),(x).rend()
using namespace std;
using ll = long long;

template<typename T> class SegmentTree{
  private:
    typedef std::function<T(T,T)> F;
    int n;
    T d0;
    vector<T> vertex;
    F f;
    F g;
  public:
    SegmentTree(F f,F g,T d):d0(d),f(f),g(g){}
    void init(int _n){
        n=1;
        while(n<_n) n*=2;
        vertex.resize(2*n-1,d0);
    }
    void build(const vector<T> &v){
        int n_=v.size();
        init(n_);
        for(int i=0;i<n_;i++) vertex[n+i-1]=v[i];
        for(int i=n-2;i>=0;i--)
        vertex[i]=f(vertex[2*i+1],vertex[2*i+2]);
    }
    void update(int i,T x){
        int k=i+n-1;
        vertex[k]=g(vertex[k],x);
        while(k>0){
            k=(k-1)/2;
            vertex[k]=f(vertex[2*k+1],vertex[2*k+2]);
        }
        return;
    }
    T query(int l,int r){
        T vl=d0,vr=d0;
        l+=n-1;
        r+=n-1;
        for(;l<=r;l/=2,r=r/2-1){
            if(l%2==0) vl=f(vl,vertex[l]);
            if(r&1) vr=f(vr,vertex[r]);
        }
        return f(vl,vr);
    }
};

int main(){
    int N;cin>>N;
    assert(1<=N&&N<=100000);
    using T = tuple<ll,ll,ll,ll>;
    vector<T> X(N);
    vector<int> A;
    const int MAX=1e9;
    REP(i,N) {
        int a,b,c;
        cin>>a>>b>>c;
        assert(1<=a&&a<=MAX);
        assert(1<=b&&b<=MAX);
        assert(1<=c&&c<=MAX);
        X[i]=tie(a,b,c,i);
        A.push_back(a);
    }
    sort(All(A));
    sort(All(X));
    vector<int> ord(N);
    iota(All(ord),0);
    sort(All(ord),[&](int x,int y){
        if(get<0>(X[y])<=get<1>(X[x])-get<2>(X[x])) return true;
        if(get<0>(X[x])<=get<1>(X[y])-get<2>(X[y])) return false;
        return get<0>(X[x])>get<0>(X[y]);});
    const ll inf = 1LL<<50;
    SegmentTree<ll> dp([](ll a,ll b){return max(a,b);},[](ll a,ll b){return b;},0);
    SegmentTree<bool> bl([](bool a,bool b){return a|b;},[](bool a,bool b){return b;},false);
    dp.init(N);
    bl.init(N);
    for(int i=N-1;i>=0;--i){
        int k=upper_bound(All(A),get<1>(X[ord[i]])-get<2>(X[ord[i]]))-A.begin();
        ll pl=get<1>(X[ord[i]]);
        if(k>0) pl+=dp.query(0,k-1);
        if(bl.query(ord[i],N-1)) pl=inf;
        dp.update(ord[i],pl);
        if(k>0) bl.update(k-1,true);
    }
    for(int i=N-1;i>=0;--i){
        int k=upper_bound(All(A),get<1>(X[ord[i]])-get<2>(X[ord[i]]))-A.begin();
        if(k>0) dp.update(ord[i],max(dp.query(ord[i],ord[i]),dp.query(0,k-1)));
    }
    vector<ll> ans(N);
    REP(i,N) ans[get<3>(X[i])]=dp.query(i,i);
    REP(i,N){
        if(ans[i]>=inf) cout<<"BAN\n";
        else cout<<ans[i]<<"\n";
    }
}
0