結果

問題 No.974 最後の日までに
ユーザー kotatsugamekotatsugame
提出日時 2020-01-18 00:32:08
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 935 bytes
コンパイル時間 995 ms
コンパイル使用メモリ 85,268 KB
実行使用メモリ 13,392 KB
最終ジャッジ日時 2024-06-26 03:02:04
合計ジャッジ時間 4,715 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
12,260 KB
testcase_01 AC 68 ms
12,800 KB
testcase_02 AC 68 ms
12,664 KB
testcase_03 AC 70 ms
12,224 KB
testcase_04 AC 68 ms
12,576 KB
testcase_05 AC 56 ms
12,540 KB
testcase_06 AC 56 ms
12,300 KB
testcase_07 AC 57 ms
12,708 KB
testcase_08 AC 56 ms
12,412 KB
testcase_09 AC 58 ms
11,772 KB
testcase_10 AC 56 ms
12,204 KB
testcase_11 AC 58 ms
11,868 KB
testcase_12 AC 58 ms
12,100 KB
testcase_13 AC 63 ms
12,132 KB
testcase_14 AC 62 ms
11,996 KB
testcase_15 AC 66 ms
12,992 KB
testcase_16 AC 68 ms
12,648 KB
testcase_17 AC 62 ms
13,256 KB
testcase_18 AC 61 ms
11,692 KB
testcase_19 AC 63 ms
12,716 KB
testcase_20 AC 63 ms
12,184 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 46 ms
11,664 KB
testcase_28 AC 60 ms
12,444 KB
testcase_29 AC 2 ms
6,944 KB
testcase_30 AC 67 ms
12,652 KB
testcase_31 AC 2 ms
6,940 KB
testcase_32 AC 2 ms
6,940 KB
testcase_33 AC 39 ms
7,888 KB
testcase_34 AC 64 ms
11,764 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 69 ms
12,700 KB
testcase_38 AC 2 ms
6,940 KB
testcase_39 WA -
testcase_40 AC 42 ms
13,280 KB
testcase_41 AC 57 ms
11,932 KB
testcase_42 AC 71 ms
12,400 KB
testcase_43 AC 66 ms
11,720 KB
testcase_44 AC 51 ms
12,760 KB
testcase_45 AC 42 ms
7,504 KB
testcase_46 AC 2 ms
6,944 KB
testcase_47 AC 2 ms
6,940 KB
testcase_48 AC 2 ms
6,944 KB
testcase_49 WA -
testcase_50 AC 2 ms
6,944 KB
testcase_51 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp:18:1: warning: ISO C++ forbids declaration of 'main' with no type [-Wreturn-type]
   18 | main()
      | ^~~~

ソースコード

diff #

#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
int W;
long A[55],B[55],C[55];
vector<pair<long,long> >X;
void dfs(int d,int lim,long x,long y)
{
	if(d==lim)
	{
		X.push_back(make_pair(y,x));
		return;
	}
	dfs(d+1,lim,x,y+A[d]);
	if(d+2<=lim)dfs(d+2,lim,x+B[d+1],y-C[d+1]);
}
main()
{
	cin>>W;
	for(int i=0;i<W;i++)cin>>A[i]>>B[i]>>C[i];
	if(W==1)
	{
		cout<<0<<endl;
		return 0;
	}
	long ans=0;
	for(int mid:(vector<int>){W/2-1,W/2})
	{
		dfs(0,mid,0,0);
		sort(X.rbegin(),X.rend());
		vector<pair<long,long> >A;
		long pre=0;
		for(pair<long,long>p:X)
		{
			if(pre<p.second)
			{
				pre=p.second;
				A.push_back(p);
			}
		}
		sort(A.begin(),A.end());
		X.clear();
		dfs(mid,W,0,0);
		for(pair<long,long>p:X)
		{
			vector<pair<long,long> >::iterator it=lower_bound(A.begin(),A.end(),make_pair(-p.first,0L));
			if(it!=A.end())ans=max(ans,p.second+it->second);
		}
		X.clear();
	}
	cout<<ans<<endl;
}
0