結果

問題 No.1826 Fruits Collecting
ユーザー se1ka2se1ka2
提出日時 2022-01-28 23:02:06
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,869 ms / 2,000 ms
コード長 1,631 bytes
コンパイル時間 976 ms
コンパイル使用メモリ 94,676 KB
実行使用メモリ 50,596 KB
最終ジャッジ日時 2024-06-09 16:34:18
合計ジャッジ時間 33,950 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 6 ms
14,352 KB
testcase_01 AC 9 ms
14,484 KB
testcase_02 AC 8 ms
14,480 KB
testcase_03 AC 12 ms
14,608 KB
testcase_04 AC 5 ms
14,356 KB
testcase_05 AC 606 ms
30,280 KB
testcase_06 AC 1,123 ms
41,872 KB
testcase_07 AC 736 ms
32,200 KB
testcase_08 AC 59 ms
16,208 KB
testcase_09 AC 1,074 ms
37,096 KB
testcase_10 AC 695 ms
31,460 KB
testcase_11 AC 670 ms
30,872 KB
testcase_12 AC 229 ms
21,320 KB
testcase_13 AC 104 ms
17,644 KB
testcase_14 AC 177 ms
19,160 KB
testcase_15 AC 1,839 ms
50,464 KB
testcase_16 AC 1,826 ms
50,500 KB
testcase_17 AC 1,846 ms
50,436 KB
testcase_18 AC 1,843 ms
50,504 KB
testcase_19 AC 1,831 ms
50,472 KB
testcase_20 AC 1,837 ms
50,596 KB
testcase_21 AC 1,819 ms
50,488 KB
testcase_22 AC 1,811 ms
50,500 KB
testcase_23 AC 1,838 ms
50,436 KB
testcase_24 AC 1,869 ms
50,500 KB
testcase_25 AC 5 ms
14,356 KB
testcase_26 AC 4 ms
14,360 KB
testcase_27 AC 4 ms
14,360 KB
testcase_28 AC 5 ms
14,356 KB
testcase_29 AC 5 ms
14,356 KB
testcase_30 AC 312 ms
22,528 KB
testcase_31 AC 697 ms
31,424 KB
testcase_32 AC 294 ms
22,352 KB
testcase_33 AC 1,165 ms
41,804 KB
testcase_34 AC 948 ms
35,196 KB
testcase_35 AC 180 ms
19,400 KB
testcase_36 AC 1,133 ms
42,016 KB
testcase_37 AC 517 ms
34,304 KB
testcase_38 AC 349 ms
29,576 KB
testcase_39 AC 503 ms
28,844 KB
testcase_40 AC 677 ms
31,776 KB
testcase_41 AC 125 ms
18,068 KB
testcase_42 AC 19 ms
14,996 KB
testcase_43 AC 4 ms
14,360 KB
testcase_44 AC 5 ms
14,360 KB
testcase_45 AC 5 ms
14,484 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 p[200005];

void divide_conquer(int a, int b){
	if(b - a <= 10){
		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);
	map<ll, int> mp;
	for(int i = a; i < b; i++) mp[l[i]]++;
	int m = b - a, k = 0;
	for(auto itr = mp.begin(); itr != mp.end(); itr++) mp[itr->first] = k++;
	for(int e = 0; e < m; e++){
		int i = a + e;
		p[e] = P(r[i], i);
	}
	sort(p, p + m);
	segtree<S, mx, e> seg(k);
	for(int e = 0; e < m; e++){
		int i = p[e].second;
		if(i < (a + b) / 2) seg.set(mp[l[i]], mx(seg.get(mp[l[i]]), S{dp[i]}));
		else dp[i] = max(dp[i], seg.prod(mp[l[i]], k).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