結果

問題 No.844 split game
ユーザー matsukin11111matsukin11111
提出日時 2019-06-30 22:41:39
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 171 ms / 2,000 ms
コード長 1,791 bytes
コンパイル時間 576 ms
コンパイル使用メモリ 88,912 KB
実行使用メモリ 12,428 KB
最終ジャッジ日時 2024-07-07 03:15:37
合計ジャッジ時間 6,313 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
10,272 KB
testcase_01 AC 49 ms
9,292 KB
testcase_02 AC 130 ms
10,716 KB
testcase_03 AC 92 ms
10,036 KB
testcase_04 AC 48 ms
9,056 KB
testcase_05 AC 140 ms
11,044 KB
testcase_06 AC 44 ms
9,156 KB
testcase_07 AC 37 ms
8,936 KB
testcase_08 AC 22 ms
8,880 KB
testcase_09 AC 105 ms
10,684 KB
testcase_10 AC 151 ms
10,788 KB
testcase_11 AC 143 ms
11,344 KB
testcase_12 AC 105 ms
10,600 KB
testcase_13 AC 64 ms
10,204 KB
testcase_14 AC 72 ms
9,280 KB
testcase_15 AC 171 ms
11,140 KB
testcase_16 AC 159 ms
11,220 KB
testcase_17 AC 154 ms
11,200 KB
testcase_18 AC 161 ms
11,204 KB
testcase_19 AC 159 ms
11,272 KB
testcase_20 AC 154 ms
12,428 KB
testcase_21 AC 156 ms
11,320 KB
testcase_22 AC 157 ms
11,388 KB
testcase_23 AC 8 ms
8,100 KB
testcase_24 AC 12 ms
8,144 KB
testcase_25 AC 9 ms
8,164 KB
testcase_26 AC 5 ms
8,076 KB
testcase_27 AC 10 ms
8,128 KB
testcase_28 AC 4 ms
8,196 KB
testcase_29 AC 11 ms
8,408 KB
testcase_30 AC 12 ms
8,644 KB
testcase_31 AC 11 ms
8,596 KB
testcase_32 AC 4 ms
8,520 KB
testcase_33 AC 14 ms
8,444 KB
testcase_34 AC 10 ms
8,804 KB
testcase_35 AC 18 ms
9,176 KB
testcase_36 AC 11 ms
9,352 KB
testcase_37 AC 25 ms
8,568 KB
testcase_38 AC 50 ms
9,440 KB
testcase_39 AC 105 ms
10,600 KB
testcase_40 AC 32 ms
9,468 KB
testcase_41 AC 3 ms
8,264 KB
testcase_42 AC 3 ms
8,716 KB
testcase_43 AC 2 ms
8,272 KB
testcase_44 AC 3 ms
8,840 KB
testcase_45 AC 3 ms
7,992 KB
testcase_46 AC 2 ms
7,928 KB
testcase_47 AC 2 ms
8,108 KB
testcase_48 AC 3 ms
9,600 KB
testcase_49 AC 3 ms
8,624 KB
testcase_50 AC 3 ms
8,312 KB
testcase_51 AC 3 ms
8,128 KB
testcase_52 AC 2 ms
8,008 KB
testcase_53 AC 2 ms
8,168 KB
testcase_54 AC 2 ms
8,828 KB
testcase_55 AC 2 ms
8,212 KB
testcase_56 AC 3 ms
8,816 KB
testcase_57 AC 3 ms
8,256 KB
testcase_58 AC 3 ms
9,056 KB
testcase_59 AC 2 ms
8,708 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<cstdio>
#include<cstring>
#include <cstdlib>  
#include <math.h>
#include <cmath>
#include<cctype>
#include<string>
#include<set>
#include<iomanip>
#include <map>
#include<algorithm>
#include <functional>
#include<vector>
#include<climits>
#include<stack>
#include<queue>
#include<bitset>
#include <deque>
#include <climits>
#include <typeinfo>
#include <utility> 
using namespace std;
using ll = long long;
template<typename T>using min_priority_queue = priority_queue<T, vector<T>, greater<T>>;
const ll MOD = 1e9 + 7;
const ll inf = 1LL << 60;
#define all(x) (x).begin(),(x).end()
#define puts(x) cout << x << endl;
#define rep(i,m,n) for(ll i = m;i < n;++i)
#define pb push_back
#define fore(i,a) for(auto &i:a)
#define rrep(i,m,n) for(ll i = m;i >= n;--i)
#define INF INT_MAX/2

//segtree
const ll N = 1 << 18;
ll seg[2 * N];
void st(ll p, ll v) {
	p += N - 1;
	seg[p] = v;
	while (p>0) {
		p = (p - 1) / 2;
		seg[p] = max(seg[2 * p + 1], seg[2 * p + 2]);
	}
}
ll query(ll l, ll r, ll a, ll b, ll k) {
	if (r <= a || b <= l)return -inf;
	if (l <= a && b <= r)return seg[k];
	int m = (a + b) / 2;
	return max(query(l, r, a, m, 2 * k + 1), query(l, r, m, b, 2 * k + 2));
}
//[l,r]
ll get(int l, int r) {
	return query(l, r+1, 0, N, 0);
}
ll oneget(int i) {
	return get(i,i);
}
//endsegtree

vector<pair<ll,ll>>R[101010];
int main() {
	ll n, m, a;
	cin >> n >> m >> a;
	
	rep(i, 0, m) {
		ll l, r, p;
		cin >> l >> r >> p;
		R[r].pb({ l,p });
	}

	rep(i,0,n+1)st(i, -inf);
	st(0, 0);

	for (ll r = 1; r <= n; r++) {
		fore(pa, R[r]) {
			ll l = pa.first;
			ll p = pa.second;
			
			ll ma = -inf;
			ll fl = (r == n) ? 0 : a;
			ma = max(ma,oneget(l-1)-fl+p);
			ma = max(ma,get(0,l-2)-a-fl+p);
			st(r,max(oneget(r),ma));
		}
	}
	puts(get(0, n));
	return 0;
}
0