結果

問題 No.3214 small square
ユーザー Yudai0606Nazo
提出日時 2025-07-27 20:30:57
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 392 ms / 3,000 ms
コード長 2,776 bytes
コンパイル時間 4,883 ms
コンパイル使用メモリ 266,452 KB
実行使用メモリ 24,000 KB
最終ジャッジ日時 2025-07-27 20:31:16
合計ジャッジ時間 16,531 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 40
権限があれば一括ダウンロードができます

ソースコード

diff #

#ifndef ONLINE_JUDGE
#define _GLIBCXX_DEBUG
#endif
#include <bits/stdc++.h>
#include <cassert>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
using ll = long long;
using mint = modint998244353;
//using mint = modint1000000007;
#define rep(i, n) for (int i = 0; i < (int)(n); i++)
#define repu(i, s, t) for (int i = (int)(s); i < (int)(t); i++)
#define repd(i, s, t) for (int i = (int)(s)-1; i >= (int)(t); i--)
#define all(v) v.begin(), v.end()
void _u() { cerr << endl; } template <class H, class... T> void _u(H&& h, T&&... t) { cerr << h << ", "; _u(move(t)...); }
#define U(...) { cerr << #__VA_ARGS__ << ": "; _u(__VA_ARGS__); }
template<typename T> bool chmax(T &a, const T b) { if(a >= b) return false; a = b; return true; }
template<typename T> bool chmin(T &a, const T b) { if(a <= b) return false; a = b; return true; }
template<typename T> istream& operator>>(istream &in, vector<T> &a) { for(T &x: a) in >> x; return in; }
template<typename T> ostream& operator<<(ostream &out, const vector<T> &a) { for(const T &x: a) out << x << ' '; return out; }
const int di[] = {1, 0, -1, 0, 1, 1, -1, -1, 0};
const int dj[] = {0, 1, 0, -1, -1, 1, 1, -1, 0};

template<typename T = int>
struct CC {
    bool initialized;
    vector<T> xs;
    CC(): initialized(false) {}
    void add(T x) { xs.push_back(x); }
    void init() {
        sort(xs.begin(), xs.end());
        xs.erase(unique(xs.begin(), xs.end()), xs.end());
        initialized = true;
    }
    int operator()(T x) {
        if(!initialized) init();
        return lower_bound(xs.begin(), xs.end(), x) - xs.begin();
    }
    T operator[](int i) {
        if(!initialized) init();
        return xs[i];
    }
    int size() {
        if(!initialized) init();
        return xs.size();
    }
};

const ll INF = 1e18;
using S = ll;
S op(S l, S r) { return max(l, r); }
S e() { return -INF; }
using F = ll;
S mapping(F l, S r) { return l + r; }
F composition(F l, F r) { return l + r; }
F id() { return 0; }

int main() {
    int n, a;
    cin >> n >> a;
    a++;
    CC cc;
    vector<tuple<int, int, int, int>> qs;
    rep(i, n) {
        int x, y, v;
        cin >> x >> y >> v;
        cc.add(y), cc.add(y+a);
        qs.emplace_back(x, 1, y, v);
        qs.emplace_back(x+a, -1, y, v);
    }
    lazy_segtree<S, op, e, F, mapping, composition, id> lst(vector<ll>(cc.size()*2, 0LL));
    ll ans = 0;
    sort(all(qs));
    ll prem = -INF, prep = -INF;
    for(auto[x, t, y, v]: qs) {
        if(t < 0 && x != prem) {
            chmax(ans, lst.all_prod());
            prem = x;
        }
        if(t > 0 && x != prep) {
            chmax(ans, lst.all_prod());
            prep = x;
        }
        lst.apply(cc(y)*2, cc(y+a)*2-1, v*t);
    }
    cout << ans << endl;
    return 0;
}
0