結果

問題 No.844 split game
ユーザー tempura_pptempura_pp
提出日時 2019-03-14 00:35:49
言語 C++11
(gcc 11.4.0)
結果
RE  
実行時間 -
コード長 1,048 bytes
コンパイル時間 1,108 ms
コンパイル使用メモリ 99,396 KB
実行使用メモリ 14,592 KB
最終ジャッジ日時 2024-06-24 14:57:56
合計ジャッジ時間 7,588 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
7,680 KB
testcase_01 AC 49 ms
9,216 KB
testcase_02 AC 146 ms
11,776 KB
testcase_03 AC 105 ms
11,008 KB
testcase_04 AC 48 ms
7,040 KB
testcase_05 AC 164 ms
13,056 KB
testcase_06 AC 45 ms
6,944 KB
testcase_07 AC 35 ms
8,064 KB
testcase_08 AC 21 ms
6,944 KB
testcase_09 AC 121 ms
9,344 KB
testcase_10 AC 177 ms
13,056 KB
testcase_11 AC 165 ms
13,824 KB
testcase_12 AC 122 ms
9,088 KB
testcase_13 AC 69 ms
7,040 KB
testcase_14 AC 64 ms
8,704 KB
testcase_15 AC 189 ms
14,592 KB
testcase_16 AC 185 ms
14,592 KB
testcase_17 AC 181 ms
14,464 KB
testcase_18 AC 185 ms
14,592 KB
testcase_19 AC 186 ms
14,592 KB
testcase_20 AC 183 ms
14,592 KB
testcase_21 AC 184 ms
14,592 KB
testcase_22 AC 187 ms
14,592 KB
testcase_23 AC 5 ms
6,944 KB
testcase_24 AC 12 ms
6,940 KB
testcase_25 AC 8 ms
6,944 KB
testcase_26 AC 4 ms
6,944 KB
testcase_27 AC 11 ms
6,940 KB
testcase_28 AC 3 ms
6,940 KB
testcase_29 AC 10 ms
6,944 KB
testcase_30 AC 12 ms
6,940 KB
testcase_31 AC 10 ms
6,940 KB
testcase_32 AC 3 ms
6,940 KB
testcase_33 AC 15 ms
6,940 KB
testcase_34 AC 10 ms
6,944 KB
testcase_35 AC 18 ms
6,940 KB
testcase_36 AC 10 ms
6,940 KB
testcase_37 AC 26 ms
6,940 KB
testcase_38 AC 42 ms
6,940 KB
testcase_39 AC 95 ms
10,240 KB
testcase_40 AC 26 ms
7,040 KB
testcase_41 AC 2 ms
6,940 KB
testcase_42 AC 2 ms
6,940 KB
testcase_43 AC 1 ms
6,944 KB
testcase_44 AC 2 ms
6,944 KB
testcase_45 AC 2 ms
6,940 KB
testcase_46 AC 1 ms
6,944 KB
testcase_47 RE -
testcase_48 AC 2 ms
6,944 KB
testcase_49 AC 1 ms
6,940 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 RE -
testcase_55 AC 2 ms
6,944 KB
testcase_56 AC 2 ms
6,940 KB
testcase_57 AC 1 ms
6,940 KB
testcase_58 AC 2 ms
6,940 KB
testcase_59 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<algorithm>
#include<vector>
#include<iomanip>
#include<math.h>
#include<complex>
#include<queue>
#include<deque>
#include<stack>
#include<map>
#include<set>
#include<bitset>
#include<functional>
#include<assert.h>
#include<numeric>
using namespace std;
#define REP(i,m,n) for(int i=(int)(m) ; i < (int) (n) ; ++i )
#define rep(i,n) REP(i,0,n)
typedef long long ll;


ll dp[101010][2];
int main(){
	ll n,m;
	cin>>n>>m;
	assert(n>=2&&n<=100000);
	assert(2<=m&&m<=100000&&m<=n*(n+1)/2);
	ll a;
	cin>>a;
	assert(1<=a&&a<=1000000000);
	vector<pair<int,long long>> v[n];
	set<pair<int,int>> st;
	rep(i,m){
		int x,y,z;
		cin>>x>>y>>z;
		assert(1<=x&&x<=y&&y<=n);
		assert(st.count({x,y})==0);
		assert(1<=z&&z<=1000000000);
		st.insert({x,y});
		--x;--y;

		v[y].emplace_back(x,z);
	}
	rep(i,n){
		dp[i+1][0]=max(dp[i][0],dp[i][1]);
		dp[i+1][1]=max(dp[i][0],dp[i][1])-a;
		for(auto p : v[i]){
			dp[i+1][1]=max(dp[i+1][1],dp[p.first][1]+p.second-a);
		}
	}
	cout<<max(dp[n][1]+a,dp[n][0])<<endl;
	return 0;
}
0