結果

問題 No.1826 Fruits Collecting
ユーザー se1ka2se1ka2
提出日時 2022-01-28 23:02:06
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 1,631 bytes
コンパイル時間 1,433 ms
コンパイル使用メモリ 95,080 KB
実行使用メモリ 50,676 KB
最終ジャッジ日時 2024-12-30 10:55:29
合計ジャッジ時間 43,069 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
8,320 KB
testcase_01 AC 10 ms
8,448 KB
testcase_02 AC 12 ms
8,576 KB
testcase_03 AC 15 ms
8,832 KB
testcase_04 AC 8 ms
8,320 KB
testcase_05 AC 752 ms
26,168 KB
testcase_06 AC 1,380 ms
38,852 KB
testcase_07 AC 931 ms
28,472 KB
testcase_08 AC 72 ms
10,496 KB
testcase_09 AC 1,341 ms
34,400 KB
testcase_10 AC 873 ms
27,416 KB
testcase_11 AC 833 ms
27,008 KB
testcase_12 AC 285 ms
16,032 KB
testcase_13 AC 126 ms
11,924 KB
testcase_14 AC 222 ms
13,776 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
8,192 KB
testcase_26 AC 5 ms
8,192 KB
testcase_27 AC 6 ms
8,192 KB
testcase_28 AC 5 ms
8,320 KB
testcase_29 AC 6 ms
8,192 KB
testcase_30 AC 389 ms
17,680 KB
testcase_31 AC 849 ms
27,132 KB
testcase_32 AC 355 ms
17,300 KB
testcase_33 AC 1,681 ms
39,608 KB
testcase_34 AC 1,170 ms
32,044 KB
testcase_35 AC 220 ms
13,796 KB
testcase_36 AC 1,421 ms
39,112 KB
testcase_37 AC 645 ms
30,660 KB
testcase_38 AC 436 ms
25,240 KB
testcase_39 AC 623 ms
26,464 KB
testcase_40 AC 831 ms
30,568 KB
testcase_41 AC 154 ms
13,140 KB
testcase_42 AC 22 ms
8,832 KB
testcase_43 AC 6 ms
8,320 KB
testcase_44 AC 5 ms
8,192 KB
testcase_45 AC 5 ms
8,192 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