結果

問題 No.2808 Concentration
ユーザー 沙耶花沙耶花
提出日時 2024-07-12 22:35:27
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,197 bytes
コンパイル時間 4,565 ms
コンパイル使用メモリ 280,480 KB
実行使用メモリ 131,628 KB
最終ジャッジ日時 2024-07-12 22:35:52
合計ジャッジ時間 24,431 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 475 ms
131,368 KB
testcase_03 AC 385 ms
131,496 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 176 ms
55,244 KB
testcase_08 WA -
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 253 ms
86,808 KB
testcase_11 WA -
testcase_12 AC 119 ms
38,096 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 342 ms
116,752 KB
testcase_16 WA -
testcase_17 AC 421 ms
125,392 KB
testcase_18 AC 381 ms
131,244 KB
testcase_19 WA -
testcase_20 AC 361 ms
124,856 KB
testcase_21 AC 337 ms
109,436 KB
testcase_22 WA -
testcase_23 AC 224 ms
75,572 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 389 ms
116,492 KB
testcase_27 AC 441 ms
131,492 KB
testcase_28 WA -
testcase_29 AC 375 ms
131,496 KB
testcase_30 AC 388 ms
131,496 KB
testcase_31 AC 377 ms
131,392 KB
testcase_32 AC 368 ms
131,628 KB
testcase_33 WA -
testcase_34 AC 380 ms
131,492 KB
testcase_35 AC 387 ms
131,624 KB
testcase_36 AC 413 ms
131,624 KB
testcase_37 AC 408 ms
131,500 KB
testcase_38 AC 399 ms
131,620 KB
testcase_39 AC 420 ms
131,368 KB
testcase_40 AC 396 ms
131,496 KB
testcase_41 AC 384 ms
131,492 KB
testcase_42 WA -
testcase_43 WA -
testcase_44 AC 407 ms
131,496 KB
testcase_45 AC 413 ms
131,500 KB
testcase_46 AC 392 ms
131,496 KB
testcase_47 AC 2 ms
5,376 KB
testcase_48 AC 1 ms
5,376 KB
testcase_49 AC 2 ms
5,376 KB
testcase_50 AC 2 ms
5,376 KB
testcase_51 AC 2 ms
5,376 KB
testcase_52 AC 2 ms
5,376 KB
testcase_53 AC 2 ms
5,376 KB
testcase_54 AC 3 ms
5,376 KB
testcase_55 AC 2 ms
5,376 KB
testcase_56 AC 2 ms
5,376 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,1).second;
	cout<<z.back() - ans<<endl;
	return 0;
}
0