結果

問題 No.2808 Concentration
ユーザー cho435cho435
提出日時 2024-07-27 00:11:05
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,462 bytes
コンパイル時間 4,923 ms
コンパイル使用メモリ 276,412 KB
実行使用メモリ 44,656 KB
最終ジャッジ日時 2024-07-27 00:11:33
合計ジャッジ時間 27,771 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 348 ms
44,396 KB
testcase_03 WA -
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 131 ms
20,608 KB
testcase_08 WA -
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 194 ms
28,748 KB
testcase_11 WA -
testcase_12 AC 86 ms
14,300 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 283 ms
40,612 KB
testcase_16 WA -
testcase_17 AC 332 ms
42,744 KB
testcase_18 AC 317 ms
44,224 KB
testcase_19 WA -
testcase_20 AC 301 ms
42,724 KB
testcase_21 AC 266 ms
38,600 KB
testcase_22 WA -
testcase_23 AC 171 ms
25,900 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 299 ms
40,500 KB
testcase_27 AC 362 ms
44,264 KB
testcase_28 WA -
testcase_29 AC 313 ms
44,408 KB
testcase_30 AC 307 ms
44,300 KB
testcase_31 AC 336 ms
44,608 KB
testcase_32 AC 315 ms
44,480 KB
testcase_33 WA -
testcase_34 AC 345 ms
44,656 KB
testcase_35 AC 329 ms
44,556 KB
testcase_36 AC 316 ms
44,544 KB
testcase_37 AC 334 ms
44,604 KB
testcase_38 AC 343 ms
44,268 KB
testcase_39 AC 334 ms
44,408 KB
testcase_40 AC 331 ms
44,276 KB
testcase_41 AC 345 ms
44,260 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 335 ms
44,200 KB
testcase_45 AC 352 ms
44,316 KB
testcase_46 AC 328 ms
44,432 KB
testcase_47 AC 2 ms
6,940 KB
testcase_48 WA -
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,940 KB
testcase_53 AC 2 ms
6,944 KB
testcase_54 AC 2 ms
6,944 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));
		al.push_back(y.at(i));
		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