結果

問題 No.1826 Fruits Collecting
ユーザー たたき@競プロたたき@競プロ
提出日時 2023-08-18 03:55:38
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,036 bytes
コンパイル時間 5,139 ms
コンパイル使用メモリ 321,220 KB
実行使用メモリ 15,392 KB
最終ジャッジ日時 2024-05-05 10:24:50
合計ジャッジ時間 15,619 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 4 ms
5,376 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 2 ms
5,376 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 1 ms
5,376 KB
testcase_28 AC 1 ms
5,376 KB
testcase_29 WA -
testcase_30 AC 67 ms
6,128 KB
testcase_31 AC 133 ms
8,788 KB
testcase_32 AC 65 ms
6,200 KB
testcase_33 AC 219 ms
12,868 KB
testcase_34 AC 179 ms
9,960 KB
testcase_35 AC 44 ms
5,376 KB
testcase_36 AC 211 ms
12,740 KB
testcase_37 AC 132 ms
9,664 KB
testcase_38 AC 92 ms
8,528 KB
testcase_39 AC 176 ms
10,088 KB
testcase_40 AC 214 ms
11,228 KB
testcase_41 AC 47 ms
5,376 KB
testcase_42 AC 8 ms
5,376 KB
testcase_43 AC 2 ms
5,376 KB
testcase_44 WA -
testcase_45 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for(int i=0;i<(n);i++)
#define Inf 1000000000000000001;

long long op(long long a,long long b){
	return max(a,b);
}

long long e(){
	return -Inf;
}

int main(){
	
	int n;
	cin>>n;
	
	vector<array<long long,3>> a(n);
	rep(i,n){
		long long t,x,v;
		cin>>t>>x>>v;
		a[i][0] = t+x;
		a[i][1] = t-x;
		a[i][2] = v;
	}
	sort(a.begin(),a.end());
	vector<long long> t;
	rep(i,n)t.push_back(a[i][1]);
	t.push_back(0);
	sort(t.begin(),t.end());
	t.erase(unique(t.begin(),t.end()),t.end());
	
	segtree<long long,op,e> seg(t.size());
	{
		int d = distance(t.begin(),lower_bound(t.begin(),t.end(),0LL));
		seg.set(d,0);
	}
	bool f = false;
	rep(i,n){
		//if(a[i][0]<0||a[i][1]<0)continue;
		int d = distance(t.begin(),lower_bound(t.begin(),t.end(),a[i][1]));
		long long v = seg.prod(0,d+1);
		v += a[i][2];
		seg.set(d,max(v,seg.get(d)));
	}
	cout<<seg.all_prod()<<endl;
	
	
	return 0;
}
0