結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 453 ms
131,760 KB
testcase_03 AC 364 ms
132,036 KB
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 173 ms
55,492 KB
testcase_08 WA -
testcase_09 AC 5 ms
6,940 KB
testcase_10 AC 240 ms
86,816 KB
testcase_11 WA -
testcase_12 AC 119 ms
38,276 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 366 ms
117,316 KB
testcase_16 WA -
testcase_17 AC 464 ms
126,952 KB
testcase_18 AC 453 ms
132,136 KB
testcase_19 WA -
testcase_20 AC 358 ms
125,096 KB
testcase_21 AC 329 ms
109,324 KB
testcase_22 WA -
testcase_23 AC 209 ms
76,684 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 370 ms
117,012 KB
testcase_27 AC 418 ms
132,048 KB
testcase_28 WA -
testcase_29 AC 370 ms
132,396 KB
testcase_30 AC 365 ms
131,800 KB
testcase_31 AC 403 ms
131,956 KB
testcase_32 AC 375 ms
132,400 KB
testcase_33 WA -
testcase_34 AC 411 ms
132,080 KB
testcase_35 AC 388 ms
132,936 KB
testcase_36 AC 383 ms
133,224 KB
testcase_37 AC 431 ms
131,644 KB
testcase_38 AC 388 ms
131,756 KB
testcase_39 AC 391 ms
131,772 KB
testcase_40 AC 412 ms
131,692 KB
testcase_41 AC 380 ms
131,752 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 431 ms
131,508 KB
testcase_45 AC 395 ms
132,940 KB
testcase_46 AC 391 ms
132,000 KB
testcase_47 AC 3 ms
6,940 KB
testcase_48 AC 2 ms
6,944 KB
testcase_49 AC 2 ms
6,940 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 3 ms
6,940 KB
testcase_54 AC 3 ms
6,940 KB
testcase_55 AC 2 ms
6,940 KB
testcase_56 AC 2 ms
6,944 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
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-1,1).second;
	cout<<z.back() - ans<<endl;
	return 0;
}
0