結果

問題 No.1826 Fruits Collecting
ユーザー se1ka2se1ka2
提出日時 2022-01-28 23:21:48
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 800 ms / 2,000 ms
コード長 1,576 bytes
コンパイル時間 1,109 ms
コンパイル使用メモリ 88,244 KB
実行使用メモリ 29,576 KB
最終ジャッジ日時 2024-06-09 16:53:02
合計ジャッジ時間 17,523 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
18,328 KB
testcase_01 AC 7 ms
16,404 KB
testcase_02 AC 8 ms
18,456 KB
testcase_03 AC 10 ms
16,400 KB
testcase_04 AC 8 ms
18,452 KB
testcase_05 AC 296 ms
23,588 KB
testcase_06 AC 511 ms
28,504 KB
testcase_07 AC 351 ms
24,184 KB
testcase_08 AC 37 ms
17,004 KB
testcase_09 AC 492 ms
24,696 KB
testcase_10 AC 333 ms
24,840 KB
testcase_11 AC 321 ms
23,824 KB
testcase_12 AC 123 ms
20,316 KB
testcase_13 AC 60 ms
19,264 KB
testcase_14 AC 96 ms
21,332 KB
testcase_15 AC 799 ms
29,540 KB
testcase_16 AC 790 ms
29,364 KB
testcase_17 AC 800 ms
29,576 KB
testcase_18 AC 795 ms
29,384 KB
testcase_19 AC 790 ms
29,396 KB
testcase_20 AC 795 ms
29,352 KB
testcase_21 AC 791 ms
29,332 KB
testcase_22 AC 797 ms
29,492 KB
testcase_23 AC 789 ms
29,356 KB
testcase_24 AC 794 ms
29,368 KB
testcase_25 AC 6 ms
16,532 KB
testcase_26 AC 6 ms
18,452 KB
testcase_27 AC 6 ms
16,404 KB
testcase_28 AC 6 ms
16,412 KB
testcase_29 AC 6 ms
18,452 KB
testcase_30 AC 159 ms
19,328 KB
testcase_31 AC 321 ms
23,872 KB
testcase_32 AC 150 ms
21,312 KB
testcase_33 AC 526 ms
28,648 KB
testcase_34 AC 437 ms
24,400 KB
testcase_35 AC 95 ms
17,968 KB
testcase_36 AC 518 ms
29,048 KB
testcase_37 AC 232 ms
24,636 KB
testcase_38 AC 169 ms
24,752 KB
testcase_39 AC 349 ms
28,320 KB
testcase_40 AC 455 ms
29,080 KB
testcase_41 AC 94 ms
20,328 KB
testcase_42 AC 16 ms
16,704 KB
testcase_43 AC 6 ms
16,408 KB
testcase_44 AC 5 ms
16,276 KB
testcase_45 AC 5 ms
16,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <atcoder/segtree>
#include <algorithm>
#include <iostream>
#include <map>
using namespace std;
using namespace atcoder;
typedef long long ll;
typedef pair<ll, ll> P;
typedef pair<P, ll> PP;

const ll INF = 1000000000000000;

struct S{
    ll x;
};

S mx(S a, S b){
    return S{max(a.x, b.x)};
}

S e(){
    return S{-INF};
}

ll l[200005], r[200005];
ll v[200005];
ll dp[200005];
P pl[200005], pr[200005];
int re[200005];

void divide_conquer(int a, int b){
	if(b - a <= 1){
		for(int i = a; i < b; i++){
			for(int j = a; j < i; j++){
				if(l[i] <= l[j] && r[i] >= r[j]) dp[i] = max(dp[i], dp[j] + v[i]);
			}
		}
		return;
	}
    divide_conquer(a, (a + b) / 2);
	int m = b - a;
	for(int i = a; i < b; i++){
		pl[i - a] = P(l[i], -i);
		pr[i - a] = P(r[i], i);
	}
	sort(pl, pl + m);
	sort(pr, pr + m);
	for(int i = 0; i < m; i++) re[-pl[i].second] = i;
	segtree<S, mx, e> seg(m);
	for(int e = 0; e < m; e++){
		int i = pr[e].second;
		if(i < (a + b) / 2) seg.set(re[i], S{dp[i]});
		else dp[i] = max(dp[i], seg.prod(re[i], m).x + v[i]);
	}
    divide_conquer((a + b) / 2, b);
}

int main()
{
    int n;
	cin >> n;
	PP q[200005];
	q[0] = PP(P(0, 0), 0);
	for(int i = 1; i <= n; i++){
		ll t, x, v;
		cin >> t >> x >> v;
		q[i] = PP(P(t, x), v);
	}
	sort(q, q + n + 1);
	for(int i = 0; i <= n; i++){
		v[i] = q[i].second;
		l[i] = q[i].first.second - q[i].first.first;
		r[i] = q[i].first.second + q[i].first.first;
		dp[i] = -INF;
	}
	dp[0] = 0;
	divide_conquer(0, n + 1);
	ll ans = 0;
	for(int i = 1; i <= n; i++) ans = max(ans, dp[i]);
    cout << ans << endl;
}
0