結果

問題 No.974 最後の日までに
ユーザー 沙耶花沙耶花
提出日時 2019-12-11 12:53:25
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 85 ms / 2,000 ms
コード長 2,292 bytes
コンパイル時間 2,330 ms
コンパイル使用メモリ 213,048 KB
実行使用メモリ 15,424 KB
最終ジャッジ日時 2024-10-04 01:22:00
合計ジャッジ時間 5,808 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
15,164 KB
testcase_01 AC 63 ms
15,168 KB
testcase_02 AC 67 ms
15,164 KB
testcase_03 AC 67 ms
15,168 KB
testcase_04 AC 65 ms
15,168 KB
testcase_05 AC 62 ms
15,304 KB
testcase_06 AC 61 ms
15,168 KB
testcase_07 AC 66 ms
15,168 KB
testcase_08 AC 63 ms
15,400 KB
testcase_09 AC 68 ms
15,168 KB
testcase_10 AC 66 ms
15,168 KB
testcase_11 AC 72 ms
15,168 KB
testcase_12 AC 73 ms
15,296 KB
testcase_13 AC 80 ms
15,292 KB
testcase_14 AC 70 ms
15,164 KB
testcase_15 AC 72 ms
15,300 KB
testcase_16 AC 72 ms
15,420 KB
testcase_17 AC 60 ms
15,228 KB
testcase_18 AC 61 ms
15,424 KB
testcase_19 AC 61 ms
15,168 KB
testcase_20 AC 65 ms
15,292 KB
testcase_21 AC 60 ms
15,172 KB
testcase_22 AC 61 ms
15,172 KB
testcase_23 AC 62 ms
15,292 KB
testcase_24 AC 60 ms
15,172 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 65 ms
13,440 KB
testcase_28 AC 72 ms
15,300 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 71 ms
15,232 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 52 ms
11,220 KB
testcase_34 AC 85 ms
15,236 KB
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 2 ms
5,248 KB
testcase_37 AC 78 ms
15,424 KB
testcase_38 AC 2 ms
5,248 KB
testcase_39 AC 2 ms
5,248 KB
testcase_40 AC 47 ms
13,272 KB
testcase_41 AC 52 ms
15,300 KB
testcase_42 AC 81 ms
15,172 KB
testcase_43 AC 84 ms
15,296 KB
testcase_44 AC 73 ms
13,316 KB
testcase_45 AC 52 ms
11,228 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 <bits/stdc++.h>
using namespace std;
#define modulo 1000000007
#define mod(mod_x) ((((long long)mod_x+modulo))%modulo)
#define Inf 10000000000000000

vector<pair<long long,long long>> V1,V2,V3,V4;

void dfs1(vector<long long> &a,vector<long long> &b,vector<long long> &c,int ind,long long love,long long money){
	int n = a.size();
	if(ind==n){
		V1.emplace_back(money,love);
		return;
	}
	else if(ind==n+1){
		V2.emplace_back(money,love);
		return;
	}
	
	dfs1(a,b,c,ind+1,love,money+a[ind]);
	if(ind!=n-1)dfs1(a,b,c,ind+2,love+b[ind+1],money-c[ind+1]);
	else dfs1(a,b,c,ind+2,love,money);
}

void dfs2(vector<long long> &a,vector<long long> &b,vector<long long> &c,int ind,long long love,long long money,bool f){
	int n = a.size();
	if(ind==n){
		if(f)V3.emplace_back(money,love);
		else V4.emplace_back(money,love);
		return;
	}
	else if(ind==n+1){
		return;
	}
	
	dfs2(a,b,c,ind+1,love,money+a[ind],f);
	if(ind!=n-1)dfs2(a,b,c,ind+2,love+b[ind+1],money-c[ind+1],f);
	else dfs2(a,b,c,ind+2,love,money,f);
}


int main(){
	
	int D;
	cin>>D;
	
	vector<long long> a(D),b(D),c(D);
	
	for(int i=0;i<D;i++){
		cin>>a[i]>>b[i]>>c[i];
	}
	
	vector<long long> a1,a2,b1,b2,c1,c2;
	for(int i=0;i<D;i++){
		if(i<D/2){
			a1.push_back(a[i]);
			b1.push_back(b[i]);
			c1.push_back(c[i]);
		}
		else{
			a2.push_back(a[i]);
			b2.push_back(b[i]);
			c2.push_back(c[i]);
		}
	}
	
	dfs1(a1,b1,c1,0,0,0);
	
	dfs2(a2,b2,c2,0,0,0,true);
	
	if(b2.size()!=0)dfs2(a2,b2,c2,1,b2.front(),-c2.front(),false);
	
	sort(V3.begin(),V3.end());
	sort(V4.begin(),V4.end());
	
	long long last = 0;
	
	for(auto it = V3.rbegin();it!=V3.rend();it++){
		(*it).second = max((*it).second,last);
		last = (*it).second;
	}

	last=0;
	for(auto it = V4.rbegin();it!=V4.rend();it++){
		(*it).second = max((*it).second,last);
		last = (*it).second;
	}
	
	long long ans = 0;
	pair<long long,long long> P = make_pair(0,-Inf);
	for(int i=0;i<V1.size();i++){
		P.first = -V1[i].first;
		auto it = lower_bound(V3.begin(),V3.end(),P);
		if(it==V3.end())continue;
		ans = max(ans,V1[i].second + (*it).second);
	}
	
	for(int i=0;i<V2.size();i++){
		P.first = -V2[i].first;
		auto it = lower_bound(V4.begin(),V4.end(),P);
		if(it==V4.end())continue;
		ans = max(ans,V2[i].second + (*it).second);
	}
	
	
	cout<<ans<<endl;
	

	return 0;
}
0