結果

問題 No.1014 competitive fighting
ユーザー NOSSNOSS
提出日時 2020-03-20 23:46:28
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 3,068 bytes
コンパイル時間 2,238 ms
コンパイル使用メモリ 188,784 KB
実行使用メモリ 13,984 KB
最終ジャッジ日時 2024-05-09 09:23:51
合計ジャッジ時間 15,453 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 WA -
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 298 ms
13,824 KB
testcase_06 AC 302 ms
13,952 KB
testcase_07 AC 298 ms
13,952 KB
testcase_08 AC 298 ms
13,984 KB
testcase_09 AC 301 ms
13,952 KB
testcase_10 AC 227 ms
13,952 KB
testcase_11 AC 288 ms
13,952 KB
testcase_12 AC 301 ms
13,952 KB
testcase_13 AC 140 ms
8,320 KB
testcase_14 AC 130 ms
7,936 KB
testcase_15 AC 154 ms
8,704 KB
testcase_16 AC 8 ms
5,376 KB
testcase_17 AC 55 ms
5,504 KB
testcase_18 AC 245 ms
12,416 KB
testcase_19 AC 290 ms
13,592 KB
testcase_20 AC 103 ms
7,296 KB
testcase_21 AC 220 ms
11,648 KB
testcase_22 AC 183 ms
9,600 KB
testcase_23 AC 72 ms
5,888 KB
testcase_24 AC 75 ms
6,016 KB
testcase_25 AC 19 ms
5,376 KB
testcase_26 AC 219 ms
11,648 KB
testcase_27 AC 56 ms
5,504 KB
testcase_28 AC 62 ms
5,632 KB
testcase_29 AC 4 ms
5,376 KB
testcase_30 AC 290 ms
13,568 KB
testcase_31 AC 227 ms
11,776 KB
testcase_32 AC 4 ms
5,376 KB
testcase_33 AC 19 ms
5,376 KB
testcase_34 AC 218 ms
11,648 KB
testcase_35 WA -
testcase_36 AC 203 ms
11,008 KB
testcase_37 AC 9 ms
5,376 KB
testcase_38 AC 182 ms
9,472 KB
testcase_39 AC 93 ms
6,400 KB
testcase_40 AC 177 ms
9,344 KB
testcase_41 AC 125 ms
7,808 KB
testcase_42 AC 280 ms
13,312 KB
testcase_43 WA -
testcase_44 AC 259 ms
12,672 KB
testcase_45 WA -
testcase_46 AC 27 ms
5,376 KB
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 268 ms
12,928 KB
testcase_51 AC 157 ms
8,832 KB
testcase_52 AC 11 ms
5,376 KB
testcase_53 AC 306 ms
13,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

using ll = long long int;
using ull = unsigned long long int;
using P = pair<ll, ll>;
using P3 = pair<P,ll>;
using PP = pair<P, P>;
constexpr int INF = 1 << 30;
constexpr ll MOD = ll(1e9)+7;
constexpr int di[] = {0, 1, 0, -1};
constexpr int dj[] = {1, 0, -1, 0};
constexpr double EPS = 1e-9;

template <typename Monoid>
struct SegmentTree{
private:
    using F = function<Monoid(Monoid, Monoid)>;
    int N;
    vector<Monoid> node;
    F f;
    Monoid e;  // identity element

public:
    SegmentTree(){}
    SegmentTree(F f, Monoid e):f(f), e(e){}
    void init(int sz){
        N = 1;
        while(N < sz) N <<= 1;
        node.assign(2*N-1, e);
    }
    void build(vector<Monoid>& v){
        int sz = int(v.size());
        init(sz);
        for(int i=0; i<sz; i++){
            node[i+N-1] = v[i];
        }
        for(int i=N-2; i>=0; i--){
            node[i] = f(node[i*2+1], node[i*2+2]);
        }
    }
    void update(int k, Monoid x){
        k += N-1;
        node[k] = x;
        while(k > 0){
            k = (k-1)/2;
            node[k] = f(node[2*k+1], node[2*k+2]);
        }
    }
    // [a,b)
    Monoid query(int a, int b){return query(a, b, 0, 0, N);}
    Monoid query(int a, int b, int k, int l, int r){
        if(b <= l || r <= a) return e;
        if(a <= l && r <= b) return node[k];
        Monoid vl, vr;
        vl = query(a, b, 2*k+1, l, (l+r)/2);
        vr = query(a, b, 2*k+2, (l+r)/2, r);
        return f(vl, vr);
    }
};

SegmentTree<ll> rmq([](ll a, ll b){return max(a,b);},0);

int main(){
    int N;
    cin >> N;
    vector<P> A(N);
    vector<P3> ord(N);
    vector<ll> B(N), C(N), rev(N);
    for(int i=0;i<N;i++){
        cin >> A[i].first >> B[i] >> C[i];
        A[i].second = i;;
    }
    sort(A.begin(), A.end());
    vector<ll> r(N);  // [0,r[i])
    for(int i=0;i<N;i++){
        int k = A[i].second;
        rev[k] = i;
        r[i] = upper_bound(A.begin(), A.end(), P(B[k]-C[k],N)) - A.begin();
        ord[i] = P3(P(r[i], A[i].first),k);
    }
    sort(ord.begin(), ord.end());
    rmq.build(r);
    vector<bool> ban(N);
    int banmin = N+1;
    for(int i=0;i<N;i++){
        if(r[i] > banmin){
            ban[i] = true;
        }
        else if(r[i] <= i){
            if(rmq.query(0,r[i]) > i){
                ban[i] = true;
                banmin = min(banmin, i);
            }
        }else{
            if(max(rmq.query(0,i), rmq.query(i+1,r[i])) > i){
                ban[i] = true;
                banmin = min(banmin, i);
            }
        }
    }
    vector<ll> ans(N), tmp(N);
    rmq.init(N);
    // TODO ちゃんとトポソ順に更新する
    for(int i=0;i<N;i++){
        int idx = ord[i].second;
        int k = rev[idx];
        if(ban[k]) continue;
        ans[idx] = rmq.query(0,r[k]) + B[idx];
        tmp[k] = ans[idx];

        rmq.update(k, ans[idx]);
    }
    for(int i=0;i<N;i++){
        if(ban[rev[i]]){
            cout << "BAN" << endl;
        }else{
            cout << ans[i] << endl;
        }
    }
    return 0;
}
0