結果

問題 No.2808 Concentration
ユーザー 沙耶花沙耶花
提出日時 2024-07-12 22:27:58
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,195 bytes
コンパイル時間 5,068 ms
コンパイル使用メモリ 282,304 KB
実行使用メモリ 133,348 KB
最終ジャッジ日時 2024-07-12 22:28:24
合計ジャッジ時間 25,949 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 436 ms
132,148 KB
testcase_03 AC 428 ms
132,552 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 179 ms
56,424 KB
testcase_08 WA -
testcase_09 AC 5 ms
6,940 KB
testcase_10 AC 257 ms
86,904 KB
testcase_11 WA -
testcase_12 AC 123 ms
38,720 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 361 ms
117,024 KB
testcase_16 WA -
testcase_17 AC 430 ms
126,036 KB
testcase_18 AC 427 ms
132,272 KB
testcase_19 WA -
testcase_20 AC 376 ms
125,460 KB
testcase_21 AC 358 ms
109,808 KB
testcase_22 WA -
testcase_23 AC 216 ms
76,012 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 416 ms
116,724 KB
testcase_27 AC 435 ms
131,688 KB
testcase_28 WA -
testcase_29 AC 422 ms
132,376 KB
testcase_30 AC 391 ms
133,100 KB
testcase_31 AC 393 ms
132,096 KB
testcase_32 AC 408 ms
132,016 KB
testcase_33 WA -
testcase_34 AC 406 ms
132,620 KB
testcase_35 AC 423 ms
131,776 KB
testcase_36 AC 430 ms
132,352 KB
testcase_37 AC 412 ms
133,044 KB
testcase_38 AC 439 ms
131,792 KB
testcase_39 AC 403 ms
131,528 KB
testcase_40 AC 461 ms
132,216 KB
testcase_41 AC 412 ms
131,672 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 403 ms
132,544 KB
testcase_45 AC 409 ms
131,916 KB
testcase_46 AC 449 ms
132,192 KB
testcase_47 AC 2 ms
6,940 KB
testcase_48 AC 2 ms
6,944 KB
testcase_49 AC 2 ms
6,944 KB
testcase_50 AC 2 ms
6,944 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,944 KB
testcase_55 AC 2 ms
6,944 KB
testcase_56 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

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 Inf32 1000000001
#define Inf64 1000000000000000001
long long op(long long a,long long b){
	return max(a,b);
}
long long e(){
	return -Inf64;
}
int main(){

	long long N,S,H;
	cin>>N>>S>>H;
	
	vector<long long> x,y,z;
	rep(i,N){
		long long a,b,c;
		cin>>a>>b>>c;
		x.push_back(a);
		y.push_back(b);
		z.push_back(c);
	}
	N = x.size();
	x.push_back(Inf64);
	y.push_back(Inf64);
	z.push_back(0);
	N++;
	z.insert(z.begin(),0);
	rep(i,N)z[i+1] += z[i];
	
	mcf_graph<long long,long long> G(N*2);
	
	rep(i,N){
		if(i!=N-1){
			G.add_edge(i,i+1,1,z[i+1]-z[i]);
		}
		{
			long long nxt = x[i] + S;
			int d = distance(y.begin(),upper_bound(y.begin(),y.end(),nxt));
			d--;
			if(d!=-1)G.add_edge(i,N+d,1,0);
		}
		if(i!=0){
			G.add_edge(N+i,N+i-1,1,z[i+1]-z[i]);
		}
		{
			long long nxt = y[i] + H;
			int d = distance(x.begin(),upper_bound(x.begin(),x.end(),nxt));
			if(d!=N)G.add_edge(N+i,d,1,z[d] - z[i+1]);
		}
	}
	long long ans = G.flow(0,N*2-1).second;
	cout<<z.back() - ans<<endl;
	return 0;
}
0