結果

問題 No.1014 competitive fighting
ユーザー MisterMister
提出日時 2020-05-02 02:43:08
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 2,080 bytes
コンパイル時間 1,232 ms
コンパイル使用メモリ 97,504 KB
実行使用メモリ 22,144 KB
最終ジャッジ日時 2024-12-26 00:28:11
合計ジャッジ時間 66,739 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
17,536 KB
testcase_01 AC 3 ms
10,496 KB
testcase_02 AC 3 ms
10,496 KB
testcase_03 AC 3 ms
17,408 KB
testcase_04 WA -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 201 ms
13,952 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 11 ms
15,744 KB
testcase_17 AC 443 ms
10,496 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 AC 1,495 ms
11,648 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 765 ms
10,752 KB
testcase_24 AC 802 ms
10,752 KB
testcase_25 AC 59 ms
10,496 KB
testcase_26 TLE -
testcase_27 AC 440 ms
10,496 KB
testcase_28 AC 556 ms
15,232 KB
testcase_29 AC 5 ms
10,496 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 AC 4 ms
5,248 KB
testcase_33 AC 16 ms
5,248 KB
testcase_34 AC 152 ms
7,168 KB
testcase_35 AC 200 ms
8,448 KB
testcase_36 AC 136 ms
6,784 KB
testcase_37 AC 7 ms
5,248 KB
testcase_38 AC 125 ms
6,528 KB
testcase_39 AC 65 ms
5,248 KB
testcase_40 AC 122 ms
6,528 KB
testcase_41 AC 89 ms
5,504 KB
testcase_42 AC 191 ms
8,320 KB
testcase_43 AC 12 ms
5,248 KB
testcase_44 AC 180 ms
7,808 KB
testcase_45 AC 103 ms
5,888 KB
testcase_46 AC 19 ms
5,248 KB
testcase_47 AC 61 ms
5,248 KB
testcase_48 AC 140 ms
7,040 KB
testcase_49 AC 7 ms
5,248 KB
testcase_50 AC 179 ms
8,064 KB
testcase_51 AC 106 ms
6,016 KB
testcase_52 AC 8 ms
5,248 KB
testcase_53 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#include <functional>

using lint = long long;
constexpr lint INF = 1LL << 60;

struct Item {
    lint a, b, c;
    int id;
};

void solve() {
    int n;
    std::cin >> n;

    std::vector<Item> ts(n);
    for (int i = 0; i < n; ++i) {
        auto& t = ts[i];
        std::cin >> t.a >> t.b >> t.c;
        t.id = i;
    }

    std::sort(ts.begin(), ts.end(),
              [](auto lhs, auto rhs) {
                  return lhs.a < rhs.a;
              });

    std::vector<lint> ans(n, -1), acc(n, -1);
    std::function<lint(int)> dfs =
        [&](int v) -> lint {
        if (ans[v] != -1) {
            if (v > 0 && acc[v - 1] != -1) {
                acc[v] = std::max(ans[v], acc[v - 1]);
            }
            return ans[v];
        }

        int ok = -1, ng = n;
        while (ng - ok > 1) {
            int mid = (ok + ng) / 2;
            if (ts[mid].a <= ts[v].b - ts[v].c) {
                ok = mid;
            } else {
                ng = mid;
            }
        }

        if (ok == -1) {
            ans[v] = ts[v].b;
            return ans[v];
        }

        lint res = 0;
        ans[v] = INF;

        for (int u = ok; u >= 0; --u) {
            if (u == v) continue;
            if (acc[u] != -1) {
                res = std::max(res, acc[u] + ts[v].b);
                break;
            } else {
                res = std::max(res, dfs(u) + ts[v].b);
            }
        }

        if (res >= INF) res = INF;

        ans[v] = res;
        if (v == 0) {
            acc[v] = ans[v];
        } else if (acc[v - 1] != -1) {
            acc[v] = std::max(ans[v], acc[v - 1]);
        }

        return ans[v];
    };

    std::vector<lint> as(n);
    for (int v = 0; v < n; ++v) as[ts[v].id] = dfs(v);

    for (auto a : as) {
        if (a == INF) {
            std::cout << "BAN" << std::endl;
        } else {
            std::cout << a << std::endl;
        }
    }
}

int main() {
    std::cin.tie(nullptr);
    std::ios::sync_with_stdio(false);

    solve();

    return 0;
}
0