結果

問題 No.1826 Fruits Collecting
ユーザー se1ka2se1ka2
提出日時 2022-01-28 23:20:24
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 1,578 bytes
コンパイル時間 1,440 ms
コンパイル使用メモリ 87,908 KB
実行使用メモリ 29,396 KB
最終ジャッジ日時 2024-12-30 11:32:46
合計ジャッジ時間 18,840 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
8,192 KB
testcase_01 AC 9 ms
8,320 KB
testcase_02 AC 9 ms
8,320 KB
testcase_03 AC 11 ms
8,320 KB
testcase_04 AC 9 ms
8,192 KB
testcase_05 AC 326 ms
17,436 KB
testcase_06 AC 532 ms
24,952 KB
testcase_07 AC 362 ms
18,368 KB
testcase_08 AC 37 ms
9,088 KB
testcase_09 AC 509 ms
20,748 KB
testcase_10 AC 368 ms
17,984 KB
testcase_11 AC 327 ms
17,844 KB
testcase_12 AC 124 ms
12,264 KB
testcase_13 AC 62 ms
10,116 KB
testcase_14 AC 100 ms
11,020 KB
testcase_15 AC 874 ms
29,284 KB
testcase_16 AC 876 ms
29,396 KB
testcase_17 AC 819 ms
29,392 KB
testcase_18 AC 818 ms
29,392 KB
testcase_19 AC 821 ms
29,392 KB
testcase_20 AC 834 ms
29,396 KB
testcase_21 AC 823 ms
29,392 KB
testcase_22 AC 826 ms
29,396 KB
testcase_23 AC 853 ms
29,396 KB
testcase_24 AC 853 ms
29,396 KB
testcase_25 AC 6 ms
8,064 KB
testcase_26 AC 6 ms
8,192 KB
testcase_27 AC 7 ms
8,192 KB
testcase_28 AC 6 ms
8,192 KB
testcase_29 AC 6 ms
8,192 KB
testcase_30 AC 170 ms
13,004 KB
testcase_31 AC 353 ms
17,908 KB
testcase_32 AC 154 ms
12,884 KB
testcase_33 AC 559 ms
25,008 KB
testcase_34 AC 463 ms
19,796 KB
testcase_35 AC 99 ms
10,900 KB
testcase_36 AC 538 ms
25,016 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 AC 5 ms
8,192 KB
testcase_44 AC 6 ms
8,192 KB
testcase_45 AC 6 ms
8,064 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