結果

問題 No.1014 competitive fighting
ユーザー betrue12betrue12
提出日時 2020-03-20 22:51:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 415 ms / 2,000 ms
コード長 2,834 bytes
コンパイル時間 2,778 ms
コンパイル使用メモリ 224,224 KB
実行使用メモリ 24,700 KB
最終ジャッジ日時 2024-07-07 12:54:18
合計ジャッジ時間 16,218 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 406 ms
21,888 KB
testcase_06 AC 402 ms
21,628 KB
testcase_07 AC 407 ms
21,760 KB
testcase_08 AC 404 ms
21,628 KB
testcase_09 AC 415 ms
21,760 KB
testcase_10 AC 299 ms
24,700 KB
testcase_11 AC 345 ms
21,376 KB
testcase_12 AC 406 ms
21,764 KB
testcase_13 AC 172 ms
12,112 KB
testcase_14 AC 161 ms
11,532 KB
testcase_15 AC 192 ms
12,816 KB
testcase_16 AC 9 ms
5,376 KB
testcase_17 AC 67 ms
7,036 KB
testcase_18 AC 322 ms
19,036 KB
testcase_19 AC 399 ms
21,324 KB
testcase_20 AC 128 ms
10,236 KB
testcase_21 AC 291 ms
18,156 KB
testcase_22 AC 231 ms
14,112 KB
testcase_23 AC 88 ms
7,764 KB
testcase_24 AC 90 ms
7,904 KB
testcase_25 AC 22 ms
5,376 KB
testcase_26 AC 285 ms
17,740 KB
testcase_27 AC 66 ms
6,904 KB
testcase_28 AC 74 ms
7,200 KB
testcase_29 AC 5 ms
5,376 KB
testcase_30 AC 390 ms
21,324 KB
testcase_31 AC 300 ms
18,304 KB
testcase_32 AC 5 ms
5,376 KB
testcase_33 AC 22 ms
5,376 KB
testcase_34 AC 282 ms
17,616 KB
testcase_35 AC 388 ms
21,072 KB
testcase_36 AC 251 ms
16,624 KB
testcase_37 AC 9 ms
5,376 KB
testcase_38 AC 228 ms
13,852 KB
testcase_39 AC 112 ms
8,640 KB
testcase_40 AC 224 ms
13,568 KB
testcase_41 AC 153 ms
11,116 KB
testcase_42 AC 362 ms
20,492 KB
testcase_43 AC 19 ms
5,376 KB
testcase_44 AC 333 ms
19,212 KB
testcase_45 AC 184 ms
12,416 KB
testcase_46 AC 32 ms
5,376 KB
testcase_47 AC 102 ms
8,216 KB
testcase_48 AC 265 ms
17,052 KB
testcase_49 AC 11 ms
5,376 KB
testcase_50 AC 354 ms
19,960 KB
testcase_51 AC 194 ms
12,560 KB
testcase_52 AC 13 ms
5,376 KB
testcase_53 AC 405 ms
21,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

template<typename T>
struct Segtree {
    int n, n_org;
    T e;
    vector<T> dat;
    typedef function<T(T a, T b)> Func;
    Func f;

    Segtree(){}
    Segtree(int n_input, Func f_input, T e_input){
        initialize(n_input, f_input, e_input);
    }
    void initialize(int n_input, Func f_input, T e_input){
        n_org = n_input;
        f = f_input;
        e = e_input;
        n = 1;
        while(n < n_input) n <<= 1;
        dat.resize(2*n-1, e);
    }

    void build(vector<T>& A){
        for(int k=0; k<int(A.size()); k++) dat[k+n-1] = A[k];
        for(int k=n-2; k>=0; k--) dat[k] = f(dat[2*k+1], dat[2*k+2]);
    }

    void update(int k, T a){
        k += n - 1;
        dat[k] = a;
        while(k > 0){
            k = (k - 1)/2;
            dat[k] = f(dat[2*k+1], dat[2*k+2]);
        }
    }

    T get(int k){
        return dat[k+n-1];
    }

    T between(int a, int b){
        return query(a, b+1, 0, 0, n);
    }

    T query(int a, int b, int k, int l, int r){
        if(r<=a || b<=l) return e;
        if(a<=l && r<=b) return dat[k];
        T vl = query(a, b, 2*k+1, l, (l+r)/2);
        T vr = query(a, b, 2*k+2, (l+r)/2, r);
        return f(vl, vr);
    }
};

int main(){
    int N;
    cin >> N;
    vector<int> A(N), B(N), C(N), D(N);
    // {pos, c, i}
    // c : Aなら0, Dなら1
    vector<vector<int>> X;
    for(int i=0; i<N; i++){
        cin >> A[i] >> B[i] >> C[i];
        D[i] = B[i] - C[i];
        X.push_back({A[i], 0, i});
        X.push_back({D[i], 1, i});
    }
    sort(X.begin(), X.end());
    bitset<100000> inf, a_done, d_done;
    multiset<int> st;
    st.insert(2e9);
    bool inf_now = false;
    for(auto& v : X){
        int t = v[1], i = v[2];
        if(t == 0){
            if(D[i] >= *st.begin()){
                inf_now = true;
            }
            a_done[i] = 1;
            if(!d_done[i]) st.insert(A[i]);
        }else{
            if(inf_now) inf[i] = 1;
            d_done[i] = 1;
            if(a_done[i]) st.erase(st.lower_bound(A[i]));
        }
    }

    vector<int> apos(N), dpos(N);
    for(int i=0; i<2*N; i++){
        if(X[i][1] == 0){
            apos[X[i][2]] = i;
        }else{
            dpos[X[i][2]] = i;
        }
    }

    Segtree<int64_t> segt(2*N, [](auto a, auto b){ return max(a, b); }, 0);

    vector<int64_t> ans(N, -1);
    for(int i=0; i<N; i++) if(inf[i]) ans[i] = 1e18;
    for(auto& v : X){
        int i = v[2];
        if(ans[i] == -1){
            ans[i] = B[i] + segt.between(0, dpos[i]);
            if(ans[i] > 1e18) ans[i] = 1e18;
        }
        segt.update(apos[i], ans[i]);
    }
    for(int i=0; i<N; i++){
        if(ans[i] == 1e18){
            cout << "BAN" << endl;
        }else{
            cout << ans[i] << endl;
        }
    }
    return 0;
}
0