結果

問題 No.974 最後の日までに
ユーザー jupirojupiro
提出日時 2020-01-19 14:21:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 1,914 bytes
コンパイル時間 1,376 ms
コンパイル使用メモリ 123,532 KB
実行使用メモリ 14,012 KB
最終ジャッジ日時 2024-10-04 01:41:24
合計ジャッジ時間 6,119 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
13,880 KB
testcase_01 AC 97 ms
13,776 KB
testcase_02 AC 96 ms
13,884 KB
testcase_03 AC 96 ms
13,840 KB
testcase_04 AC 98 ms
13,752 KB
testcase_05 AC 96 ms
14,008 KB
testcase_06 AC 97 ms
13,776 KB
testcase_07 AC 100 ms
14,000 KB
testcase_08 AC 100 ms
13,884 KB
testcase_09 AC 100 ms
14,012 KB
testcase_10 AC 99 ms
13,880 KB
testcase_11 AC 99 ms
13,752 KB
testcase_12 AC 99 ms
13,880 KB
testcase_13 AC 99 ms
13,780 KB
testcase_14 AC 98 ms
14,012 KB
testcase_15 AC 96 ms
13,760 KB
testcase_16 AC 98 ms
13,752 KB
testcase_17 AC 113 ms
13,772 KB
testcase_18 AC 110 ms
13,880 KB
testcase_19 AC 109 ms
13,876 KB
testcase_20 AC 109 ms
14,008 KB
testcase_21 AC 112 ms
13,804 KB
testcase_22 AC 111 ms
13,748 KB
testcase_23 AC 109 ms
13,756 KB
testcase_24 AC 112 ms
13,776 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 80 ms
12,368 KB
testcase_28 AC 102 ms
14,008 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 114 ms
13,880 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 65 ms
9,612 KB
testcase_34 AC 104 ms
13,644 KB
testcase_35 AC 1 ms
5,248 KB
testcase_36 AC 2 ms
5,248 KB
testcase_37 AC 115 ms
14,012 KB
testcase_38 AC 2 ms
5,248 KB
testcase_39 AC 2 ms
5,248 KB
testcase_40 AC 70 ms
12,352 KB
testcase_41 AC 89 ms
14,012 KB
testcase_42 AC 119 ms
13,756 KB
testcase_43 AC 116 ms
13,880 KB
testcase_44 AC 87 ms
12,236 KB
testcase_45 AC 70 ms
9,676 KB
testcase_46 AC 2 ms
5,248 KB
testcase_47 AC 2 ms
5,248 KB
testcase_48 AC 1 ms
5,248 KB
testcase_49 AC 2 ms
5,248 KB
testcase_50 AC 2 ms
5,248 KB
testcase_51 AC 1 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <iostream>
#include <string>
#include <sstream>
#include <stack>
#include <algorithm>
#include <cmath>
#include <queue>
#include <map>
#include <set>
#include <cstdlib>
#include <bitset>
#include <tuple>
#include <assert.h>
#include <deque>
#include <bitset>
#include <iomanip>
#include <limits>
#include <chrono>
#include <random>
#include <array>
#include <unordered_map>
#include <functional>
#include <complex>

template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }

const long long MAX = 5100000;
const long long INF = 1LL << 60;
const long long mod = 1000000007LL;
//const long long mod = 998244353LL;

using namespace std;
typedef unsigned long long ull;
typedef long long ll;

ll n;
vector<ll> a, b, c;

void dfs(ll cur, ll end, ll money, ll love, vector<pair<ll, ll>> &v) {
	if (cur == end) {
		v.emplace_back(money, love);
		return;
	}
	//cout << cur << " " << end << endl;
	dfs(cur + 1, end, money + a[cur], love, v);
	if (cur < end - 1) {
		dfs(cur + 2, end, money - c[cur + 1], love + b[cur + 1], v);
	}
}
ll solve(ll half) {
	vector<pair<ll,ll>> v1, v2;
	dfs(0, half, 0, 0, v1);
	dfs(half, n, 0, 0, v2);
	sort(v1.begin(), v1.end());
	sort(v2.begin(), v2.end());
	for (ll i = (ll)v2.size() - 1; i > 0; i--) {
		chmax(v2[i - 1].second, v2[i].second);
	}
	ll res = 0;
	
	for (auto e : v1) {
		ll req = -e.first;
		auto itr = lower_bound(v2.begin(), v2.end(), make_pair(req, 0LL));
		if (itr == v2.end()) continue;
		chmax(res, itr->second + e.second);
	}
	
	return res;
}
int main()
{
	/*
	cin.tie(nullptr);
	ios::sync_with_stdio(false);
	*/
	scanf("%lld", &n);
	a.resize(n), b.resize(n), c.resize(n); for (ll i = 0; i < n; i++) scanf("%lld %lld %lld", &a[i], &b[i], &c[i]);
	cout << max(solve(n / 2), solve(n / 2 + 1)) << endl;
	
	return 0;
}
0