結果

問題 No.1826 Fruits Collecting
ユーザー se1ka2se1ka2
提出日時 2022-01-28 22:58:26
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,486 bytes
コンパイル時間 2,958 ms
コンパイル使用メモリ 94,244 KB
実行使用メモリ 50,512 KB
最終ジャッジ日時 2024-06-09 16:30:47
合計ジャッジ時間 14,178 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
14,608 KB
testcase_01 AC 9 ms
14,488 KB
testcase_02 AC 11 ms
14,488 KB
testcase_03 AC 15 ms
14,616 KB
testcase_04 AC 8 ms
14,232 KB
testcase_05 AC 774 ms
30,288 KB
testcase_06 AC 1,412 ms
41,160 KB
testcase_07 AC 953 ms
32,260 KB
testcase_08 AC 75 ms
16,212 KB
testcase_09 AC 1,385 ms
37,272 KB
testcase_10 AC 865 ms
31,464 KB
testcase_11 AC 838 ms
30,856 KB
testcase_12 AC 286 ms
21,472 KB
testcase_13 AC 127 ms
17,904 KB
testcase_14 AC 217 ms
19,388 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 6 ms
14,356 KB
testcase_26 AC 5 ms
14,356 KB
testcase_27 AC 6 ms
14,356 KB
testcase_28 AC 6 ms
14,360 KB
testcase_29 AC 5 ms
14,360 KB
testcase_30 AC 386 ms
24,212 KB
testcase_31 AC 846 ms
32,060 KB
testcase_32 AC 359 ms
22,096 KB
testcase_33 AC 1,582 ms
42,020 KB
testcase_34 AC 1,202 ms
34,952 KB
testcase_35 AC 224 ms
19,396 KB
testcase_36 AC 1,443 ms
41,776 KB
testcase_37 AC 619 ms
33,744 KB
testcase_38 AC 426 ms
29,352 KB
testcase_39 AC 620 ms
29,092 KB
testcase_40 AC 823 ms
31,776 KB
testcase_41 AC 156 ms
18,252 KB
testcase_42 AC 24 ms
14,996 KB
testcase_43 AC 6 ms
14,484 KB
testcase_44 AC 5 ms
14,484 KB
testcase_45 AC 6 ms
14,360 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 <= 1) 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