結果

問題 No.2808 Concentration
ユーザー silv723silv723
提出日時 2024-07-09 22:53:15
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 4,846 bytes
コンパイル時間 2,854 ms
コンパイル使用メモリ 217,676 KB
実行使用メモリ 190,220 KB
最終ジャッジ日時 2024-07-09 22:54:14
合計ジャッジ時間 18,182 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 761 ms
74,888 KB
testcase_04 AC 241 ms
30,168 KB
testcase_05 AC 9 ms
5,376 KB
testcase_06 AC 904 ms
96,332 KB
testcase_07 AC 1,087 ms
105,328 KB
testcase_08 AC 626 ms
53,320 KB
testcase_09 AC 1,705 ms
153,544 KB
testcase_10 AC 231 ms
25,504 KB
testcase_11 AC 1,241 ms
130,284 KB
testcase_12 AC 1,354 ms
141,864 KB
testcase_13 TLE -
testcase_14 AC 1,418 ms
156,284 KB
testcase_15 AC 766 ms
83,508 KB
testcase_16 AC 1,224 ms
131,284 KB
testcase_17 AC 1,235 ms
129,348 KB
testcase_18 WA -
testcase_19 AC 724 ms
80,644 KB
testcase_20 AC 1,462 ms
145,676 KB
testcase_21 AC 788 ms
82,372 KB
testcase_22 AC 1,825 ms
163,044 KB
testcase_23 AC 1,821 ms
177,536 KB
testcase_24 AC 1,662 ms
160,636 KB
testcase_25 AC 1,475 ms
153,724 KB
testcase_26 AC 1,476 ms
147,096 KB
testcase_27 AC 1,340 ms
143,740 KB
testcase_28 AC 1,311 ms
142,720 KB
testcase_29 AC 1,650 ms
161,148 KB
testcase_30 AC 1,426 ms
155,136 KB
testcase_31 AC 1,402 ms
147,964 KB
testcase_32 AC 1,451 ms
158,844 KB
testcase_33 AC 1,603 ms
167,424 KB
testcase_34 AC 1,478 ms
163,452 KB
testcase_35 AC 1,397 ms
147,200 KB
testcase_36 AC 1,481 ms
153,468 KB
testcase_37 AC 1,472 ms
158,460 KB
testcase_38 AC 1,598 ms
167,704 KB
testcase_39 AC 1,749 ms
172,024 KB
testcase_40 AC 1,608 ms
158,968 KB
testcase_41 AC 1,405 ms
148,220 KB
testcase_42 AC 1,467 ms
150,652 KB
testcase_43 AC 2 ms
5,376 KB
testcase_44 AC 2 ms
5,376 KB
testcase_45 AC 2 ms
5,376 KB
testcase_46 AC 2 ms
5,376 KB
testcase_47 AC 2 ms
5,376 KB
testcase_48 AC 2 ms
5,376 KB
testcase_49 AC 2 ms
5,376 KB
testcase_50 AC 2 ms
5,376 KB
testcase_51 AC 2 ms
5,376 KB
testcase_52 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
template <class S, S (*op)(S, S), S (*e)()> class dynamic_segtree {
public:
    dynamic_segtree(size_t n) : n(n), root(nullptr) {}

    void set(size_t p, S x) {
        assert(p < n);
        set(root, 0, n, p, x);
    }

    S get(size_t p) const {
        assert(p < n);
        return get(root, 0, n, p);
    }

    S prod(size_t l, size_t r) const {
        assert(l <= r && r <= n);
        return prod(root, 0, n, l, r);
    }

    S all_prod() const { return root ? root->product : e(); }

    void reset(size_t l, size_t r) {
        assert(l <= r && r <= n);
        return reset(root, 0, n, l, r);
    }

    template <bool (*f)(S)> size_t max_right(size_t l) const {
        return max_right(l, [](S x) { return f(x); });
    }

    template <class F> size_t max_right(size_t l, const F& f) const {
        assert(l <= n);
        S product = e();
        assert(f(product));
        return max_right(root, 0, n, l, f, product);
    }

    template <bool (*f)(S)> size_t min_left(size_t r) const {
        return min_left(r, [](S x) { return f(x); });
    }

    template <class F> size_t min_left(size_t r, const F& f) const {
        assert(r <= n);
        S product = e();
        assert(f(product));
        return min_left(root, 0, n, r, f, product);
    }

private:
    struct node;
    using node_ptr = std::unique_ptr<node>;

    struct node {
        size_t index;
        S value, product;
        node_ptr left, right;

        node(size_t index, S value)
            : index(index),
              value(value),
              product(value),
              left(nullptr),
              right(nullptr) {}

        void update() {
            product = op(op(left ? left->product : e(), value),
                         right ? right->product : e());
        }
    };

    const size_t n;
    node_ptr root;

    void set(node_ptr& t, size_t a, size_t b, size_t p, S x) const {
        if (!t) {
            t = std::make_unique<node>(p, x);
            return;
        }
        if (t->index == p) {
            t->value = x;
            t->update();
            return;
        }
        size_t c = (a + b) >> 1;
        if (p < c) {
            if (t->index < p) std::swap(t->index, p), std::swap(t->value, x);
            set(t->left, a, c, p, x);
        } else {
            if (p < t->index) std::swap(p, t->index), std::swap(x, t->value);
            set(t->right, c, b, p, x);
        }
        t->update();
    }

    S get(const node_ptr& t, size_t a, size_t b, size_t p) const {
        if (!t) return e();
        if (t->index == p) return t->value;
        size_t c = (a + b) >> 1;
        if (p < c) return get(t->left, a, c, p);
        else return get(t->right, c, b, p);
    }

    S prod(const node_ptr& t, size_t a, size_t b, size_t l, size_t r) const {
        if (!t || b <= l || r <= a) return e();
        if (l <= a && b <= r) return t->product;
        size_t c = (a + b) >> 1;
        S result = prod(t->left, a, c, l, r);
        if (l <= t->index && t->index < r) result = op(result, t->value);
        return op(result, prod(t->right, c, b, l, r));
    }

    void reset(node_ptr& t, size_t a, size_t b, size_t l, size_t r) const {
        if (!t || b <= l || r <= a) return;
        if (l <= a && b <= r) {
            t.reset();
            return;
        }
        size_t c = (a + b) >> 1;
        reset(t->left, a, c, l, r);
        reset(t->right, c, b, l, r);
        t->update();
    }
};
using S = long long;
S op(S a, S b){
	return max(a, b);
}
S e(){
	return 0;
};
int main(){
	long long 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<long long> ch;
	for(int i = 0; i < n; i++){
		ch.push_back(x[i]);
		ch.push_back(y[i]);
		ch.push_back(x[i]+s);
		ch.push_back(y[i]+s);
		ch.push_back(x[i]+h);
		ch.push_back(y[i]+h);
		ch.push_back(x[i]-s);
		ch.push_back(y[i]-s);
		ch.push_back(x[i]-h);
		ch.push_back(y[i]-h);
		ch.push_back(x[i]+s+h);
		ch.push_back(y[i]+s+h);
		ch.push_back(x[i]+s-h);
		ch.push_back(y[i]+s-h);
		ch.push_back(x[i]-s+h);
		ch.push_back(y[i]-s+h);
		ch.push_back(x[i]-s-h);
		ch.push_back(y[i]-s-h);
	}
	sort(ch.begin(), ch.end());
	dynamic_segtree<S, op, e> d(1LL<<31);
	vector<pair<int, int>> p(3);
	vector<long long> sum(3);
	for(auto a:ch){
		if(a < 0) continue;
		if(a >= (1LL<<31)) continue;
		long long cnt = 0;
		for(int i = 0; i < 3; i++){
			while(a-(s+h)*(i+1) > x[p[i].first] && p[i].first < n){
				sum[i] -= z[p[i].first];
				p[i].first++;
			}
			while(a-(s+h)*(i+1)+s >= y[p[i].second] && p[i].second < n){
				sum[i] += z[p[i].second];
				p[i].second++;
			}
			cnt += sum[i];
			long long u = d.prod(0, max(0LL, a-(s+h)*(i+1))) + cnt;
			d.set(a, max(d.get(a), u));
		}
	}
	cout << d.prod(0, 1LL<<31) << endl;
}
0