結果

問題 No.2808 Concentration
ユーザー cho435cho435
提出日時 2024-07-27 00:16:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,552 bytes
コンパイル時間 5,268 ms
コンパイル使用メモリ 278,056 KB
実行使用メモリ 60,324 KB
最終ジャッジ日時 2024-07-27 00:17:19
合計ジャッジ時間 27,553 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 495 ms
60,324 KB
testcase_03 WA -
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,944 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 166 ms
22,232 KB
testcase_08 WA -
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 216 ms
33,660 KB
testcase_11 WA -
testcase_12 AC 120 ms
17,844 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 315 ms
41,768 KB
testcase_16 WA -
testcase_17 AC 478 ms
58,252 KB
testcase_18 AC 347 ms
45,300 KB
testcase_19 WA -
testcase_20 AC 342 ms
43,732 KB
testcase_21 AC 306 ms
40,288 KB
testcase_22 WA -
testcase_23 AC 185 ms
26,440 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 404 ms
53,340 KB
testcase_27 AC 429 ms
56,788 KB
testcase_28 WA -
testcase_29 AC 343 ms
45,256 KB
testcase_30 AC 339 ms
44,464 KB
testcase_31 AC 356 ms
45,640 KB
testcase_32 AC 347 ms
45,336 KB
testcase_33 WA -
testcase_34 AC 347 ms
45,508 KB
testcase_35 AC 395 ms
55,728 KB
testcase_36 AC 349 ms
45,612 KB
testcase_37 AC 419 ms
57,692 KB
testcase_38 AC 360 ms
45,724 KB
testcase_39 AC 403 ms
56,040 KB
testcase_40 AC 387 ms
55,620 KB
testcase_41 AC 349 ms
45,288 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 458 ms
56,360 KB
testcase_45 AC 374 ms
54,888 KB
testcase_46 AC 386 ms
55,276 KB
testcase_47 AC 2 ms
6,940 KB
testcase_48 AC 2 ms
6,940 KB
testcase_49 AC 2 ms
6,944 KB
testcase_50 AC 2 ms
6,940 KB
testcase_51 AC 2 ms
6,940 KB
testcase_52 AC 2 ms
6,944 KB
testcase_53 AC 2 ms
6,944 KB
testcase_54 AC 2 ms
6,940 KB
testcase_55 AC 2 ms
6,940 KB
testcase_56 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using ll = long long;
#define rep(i, s, t) for (ll i = s; i < (ll)(t); i++)

template<typename T>
bool chmin(T &x, T y) { return x > y ? (x = y, true) : false; }
template<typename T>
bool chmax(T &x, T y) { return x < y ? (x = y, true) : false; }

struct io_setup {
	io_setup() {
		ios::sync_with_stdio(false);
		std::cin.tie(nullptr);
		cout << fixed << setprecision(15);
	}
} io_setup;

// template atcoder segtree
using S = ll;
S op(S a, S b){
	return a + b;
}
S e(){
	return 0;
}
using segtree = atcoder::segtree<S,op,e>;

int main(){
	ll n,s,h;
	cin>>n>>s>>h;
	vector<ll> x(n),y(n),z(n);
	rep(i,0,n) cin>>x.at(i)>>y.at(i)>>z.at(i);
	map<ll,vector<ll>> el;
	vector<ll> al={0};
	rep(i,0,n){
		al.push_back(x.at(i));
		if(x.at(i)-s-h>0) al.push_back(x.at(i)-s-h);
		al.push_back(y.at(i));
		if(y.at(i)-s>0) al.push_back(y.at(i)-s);
		el[x.at(i)].push_back(y.at(i));
	}
	sort(al.begin(),al.end());
	al.erase(unique(al.begin(),al.end()),al.end());
	int m=al.size();
	auto get_idx=[&](ll a){
		return lower_bound(al.begin(),al.end(),a)-al.begin();
	};
	auto get_uidx=[&](ll a){
		return upper_bound(al.begin(),al.end(),a)-al.begin();
	};
	segtree seg(m);
	rep(i,0,n){
		seg.set(get_idx(y.at(i)),z.at(i));
	}
	vector<ll> dp(m+1,0);
	rep(i,0,m){
		ll nw=al.at(i);
		ll nx=get_idx(nw+s+h);
		chmax(dp.at(nx),dp.at(i)+seg.prod(0,get_uidx(nw+s)));
		if(el.count(nw)){
			for(auto y:el.at(nw)){
				seg.set(get_idx(y),0);
			}
		}
		chmax(dp.at(i+1),dp.at(i));
	}
	cout<<dp.back()<<endl;
}
0