結果

問題 No.2808 Concentration
ユーザー rniyarniya
提出日時 2024-07-12 22:09:11
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,440 bytes
コンパイル時間 3,647 ms
コンパイル使用メモリ 274,164 KB
実行使用メモリ 177,676 KB
最終ジャッジ日時 2024-07-12 22:10:13
合計ジャッジ時間 40,799 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 843 ms
176,072 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#ifdef LOCAL
#include <debug.hpp>
#else
#define debug(...) void(0)
#endif

template <class T> std::istream& operator>>(std::istream& is, std::vector<T>& v) {
    for (auto& e : v) {
        is >> e;
    }
    return is;
}

template <class T> std::ostream& operator<<(std::ostream& os, const std::vector<T>& v) {
    for (std::string_view sep = ""; const auto& e : v) {
        os << std::exchange(sep, " ") << e;
    }
    return os;
}

template <class T, class U = T> bool chmin(T& x, U&& y) {
    return y < x and (x = std::forward<U>(y), true);
}

template <class T, class U = T> bool chmax(T& x, U&& y) {
    return x < y and (x = std::forward<U>(y), true);
}

template <class T> void mkuni(std::vector<T>& v) {
    std::ranges::sort(v);
    auto result = std::ranges::unique(v);
    v.erase(result.begin(), result.end());
}

template <class T> int lwb(const std::vector<T>& v, const T& x) {
    return std::distance(v.begin(), std::ranges::lower_bound(v, x));
}

#include <atcoder/segtree>

using ll = long long;

using namespace std;

const int INF = 1 << 30;
const ll IINF = 1LL << 60;

ll op(ll l, ll r) { return max(l, r); }

ll e() { return -IINF; }

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    cout << fixed << setprecision(15);
    int N, S, H;
    cin >> N >> S >> H;
    vector<int> X(N), Y(N), Z(N);
    for (int i = 0; i < N; i++) cin >> X[i] >> Y[i] >> Z[i];

    vector<int> cand;
    cand.emplace_back(-INF);
    for (int i = 0; i < N; i++) {
        for (int d : {-H, 0, H}) {
            cand.emplace_back(X[i] + d);
            cand.emplace_back(Y[i] + d);
        }
    }
    mkuni(cand);
    int len = cand.size();
    map<int, int> mp;
    for (int i = 0; i < len; i++) mp[cand[i]] = i;
    vector<vector<int>> End(len);
    for (int i = 0; i < N; i++) {
        if (Y[i] - X[i] > S) continue;
        End[mp[Y[i]]].emplace_back(i);
    }
    atcoder::segtree<ll, op, e> seg1(len), seg2(len);
    seg1.set(0, 0);
    for (int i = 1, p = 0, q = 0; i < len; i++) {
        while (p < len and cand[p] < cand[i] - S) p++;
        while (q < len and cand[q] <= cand[i] - H) q++;
        for (int& idx : End[i]) {
            seg1.set(i, seg2.prod(p, i));
            seg1.set(i, seg2.prod(p, mp[X[idx]] + 1) + Z[idx]);
        }
        seg2.set(i, seg1.prod(0, q));
    }

    ll ans = max(seg1.all_prod(), seg2.all_prod());
    cout << ans << "\n";
    return 0;
}
0