結果

問題 No.844 split game
ユーザー kenken714kenken714
提出日時 2019-06-28 22:45:47
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 242 ms / 2,000 ms
コード長 1,922 bytes
コンパイル時間 892 ms
コンパイル使用メモリ 97,044 KB
実行使用メモリ 16,624 KB
最終ジャッジ日時 2024-07-02 05:02:23
合計ジャッジ時間 7,091 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
12,196 KB
testcase_01 AC 61 ms
10,060 KB
testcase_02 AC 197 ms
14,936 KB
testcase_03 AC 131 ms
12,888 KB
testcase_04 AC 67 ms
11,376 KB
testcase_05 AC 205 ms
15,872 KB
testcase_06 AC 57 ms
10,960 KB
testcase_07 AC 42 ms
10,332 KB
testcase_08 AC 27 ms
8,848 KB
testcase_09 AC 164 ms
14,172 KB
testcase_10 AC 225 ms
15,656 KB
testcase_11 AC 213 ms
15,044 KB
testcase_12 AC 161 ms
13,908 KB
testcase_13 AC 93 ms
12,048 KB
testcase_14 AC 83 ms
11,836 KB
testcase_15 AC 233 ms
16,624 KB
testcase_16 AC 233 ms
15,652 KB
testcase_17 AC 231 ms
15,672 KB
testcase_18 AC 232 ms
15,544 KB
testcase_19 AC 233 ms
15,848 KB
testcase_20 AC 230 ms
15,712 KB
testcase_21 AC 242 ms
15,836 KB
testcase_22 AC 235 ms
16,016 KB
testcase_23 AC 9 ms
8,584 KB
testcase_24 AC 16 ms
8,588 KB
testcase_25 AC 12 ms
8,348 KB
testcase_26 AC 7 ms
8,716 KB
testcase_27 AC 15 ms
9,124 KB
testcase_28 AC 6 ms
8,368 KB
testcase_29 AC 14 ms
8,616 KB
testcase_30 AC 16 ms
8,684 KB
testcase_31 AC 15 ms
8,688 KB
testcase_32 AC 6 ms
8,260 KB
testcase_33 AC 22 ms
9,864 KB
testcase_34 AC 14 ms
8,652 KB
testcase_35 AC 25 ms
9,956 KB
testcase_36 AC 16 ms
8,920 KB
testcase_37 AC 39 ms
9,812 KB
testcase_38 AC 73 ms
11,500 KB
testcase_39 AC 158 ms
14,904 KB
testcase_40 AC 41 ms
9,552 KB
testcase_41 AC 4 ms
9,032 KB
testcase_42 AC 4 ms
8,828 KB
testcase_43 AC 4 ms
8,156 KB
testcase_44 AC 4 ms
8,552 KB
testcase_45 AC 4 ms
8,628 KB
testcase_46 AC 4 ms
8,404 KB
testcase_47 AC 4 ms
9,016 KB
testcase_48 AC 4 ms
8,964 KB
testcase_49 AC 3 ms
8,424 KB
testcase_50 AC 4 ms
8,972 KB
testcase_51 AC 4 ms
8,508 KB
testcase_52 AC 4 ms
8,012 KB
testcase_53 AC 4 ms
8,972 KB
testcase_54 AC 4 ms
9,144 KB
testcase_55 AC 4 ms
9,080 KB
testcase_56 AC 4 ms
8,932 KB
testcase_57 AC 4 ms
8,788 KB
testcase_58 AC 4 ms
7,904 KB
testcase_59 AC 4 ms
7,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <utility>
#include <algorithm>
#include <map>
#include <set>
#include <vector>
#include <cmath>
#include <cstdlib>
#include <queue>
#include <stack>
#include <iomanip>


using namespace std;

#define REP(i, n) for(ll i = 0;i < n;i++)
#define REPR(i, n) for(ll i = n;i >= 0;i--)
#define FOR(i, m, n) for(ll i = m;i < n;i++)
#define FORR(i, m, n) for(ll i = m;i >= n;i--)
#define REPO(i, n) for(ll i = 1;i <= n;i++)
#define ll long long
#define INF (ll)1 << 60
#define MINF (-1 * INF)
#define ALL(n) n.begin(),n.end()
#define MOD (ll)1000000007
#define P pair<ll, ll>

ll n, m, a, dp[110000], dp2[110000], ans = MINF;
map<P, ll> mp;
vector<P> s;

//セグ木
ll dat[510000], sz;

void init(ll n) {
	sz = 1;
	while (sz < n)sz *= 2;
	REP(i, sz * 2 - 1) dat[i] = MINF; //初期値
}

void update(ll k, ll a) { //場所(0-indexed), 値
	k += sz - 1;
	dat[k] = a;
	while (k > 0) {
		k = (k - 1) / 2;
		dat[k] = max(dat[k * 2 + 1], dat[k * 2 + 2]); //更新
	}
}

ll query(ll a, ll b, ll k, ll l, ll r) { //[a, b) 呼ぶとき (a, b, 0, 0, sz)
	if (r <= a or b <= l)return MINF;
	if (a <= l and r <= b)return dat[k];
	ll v1 = query(a, b, k * 2 + 1, l, (l + r) / 2);
	ll v2 = query(a, b, k * 2 + 2, (l + r) / 2, r);
	return max(v1, v2); //戻り値
}

int main() {
	init(110000);
	REPO(i, 101010)dp[i] = MINF;
	update(0, 0);
	cin >> n >> m >> a;
	REP(i, m) {
		ll l, r, p;
		cin >> l >> r >> p;
		s.push_back(P(r, l));
		mp[P(r, l)] = p;
	}
	sort(ALL(s));
	REP(i, m) {
		ll l = s[i].second, r = s[i].first;
		ll now = dp[l - 1] + mp[P(r, l)] - a;
		if (l != 1) now = max(now, query(0, l - 1, 0, 0, sz) + mp[P(r, l)] - a * 2);
		//cout << now << " " << query(0, l - 1, 0, 0, sz) + mp[P(r, l)] << endl;
		if (r == n) now += a;
		dp[r] = max(dp[r], now);
		update(r, dp[r]);
	}
	REP(i, 110000) {
		ans = max(ans, dp[i]);
		//cout << dp[i] << " " << i << endl;
	}
	cout << ans << endl;
}
0