結果

問題 No.974 最後の日までに
ユーザー 沙耶花沙耶花
提出日時 2019-12-11 14:17:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,324 bytes
コンパイル時間 2,302 ms
コンパイル使用メモリ 213,772 KB
実行使用メモリ 19,564 KB
最終ジャッジ日時 2024-06-25 16:56:53
合計ジャッジ時間 6,384 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
19,128 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 59 ms
18,004 KB
testcase_06 AC 58 ms
16,600 KB
testcase_07 AC 61 ms
17,252 KB
testcase_08 AC 60 ms
16,724 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 68 ms
17,856 KB
testcase_14 AC 67 ms
17,696 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 59 ms
16,976 KB
testcase_24 WA -
testcase_25 AC 2 ms
6,940 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 66 ms
17,728 KB
testcase_29 AC 2 ms
6,940 KB
testcase_30 AC 67 ms
16,784 KB
testcase_31 AC 2 ms
6,944 KB
testcase_32 AC 1 ms
6,940 KB
testcase_33 AC 45 ms
11,868 KB
testcase_34 WA -
testcase_35 AC 1 ms
6,940 KB
testcase_36 AC 1 ms
6,940 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 AC 2 ms
6,940 KB
testcase_40 WA -
testcase_41 AC 54 ms
16,980 KB
testcase_42 WA -
testcase_43 AC 80 ms
16,748 KB
testcase_44 WA -
testcase_45 AC 48 ms
10,968 KB
testcase_46 AC 2 ms
6,940 KB
testcase_47 WA -
testcase_48 AC 1 ms
6,940 KB
testcase_49 AC 2 ms
6,944 KB
testcase_50 AC 2 ms
6,944 KB
testcase_51 AC 1 ms
6,940 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,bool flag){
	int n = a.size();
	if(ind==n){
		if(flag) V2.emplace_back(money,love);
		else V1.emplace_back(money,love);
		return;
	}
	
	if(flag){
		dfs1(a,b,c,ind+1,love+b[ind],money-c[ind],false);
	}
	else{
		dfs1(a,b,c,ind+1,love,money+a[ind],false);
		dfs1(a,b,c,ind+1,love,money,true);
	}

}

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


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,false);
	
	dfs2(a2,b2,c2,0,0,0,true,false);
	
	if(b2.size()!=0)dfs2(a2,b2,c2,0,0,0,true,true);
	
	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