結果

問題 No.2856 Junk Market Game
ユーザー ku_senjanku_senjan
提出日時 2024-08-25 14:43:18
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 1,670 ms / 2,000 ms
コード長 1,000 bytes
コンパイル時間 4,125 ms
コンパイル使用メモリ 294,480 KB
実行使用メモリ 504,320 KB
最終ジャッジ日時 2024-08-25 14:44:23
合計ジャッジ時間 55,253 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,812 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,944 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 363 ms
133,760 KB
testcase_11 AC 1,197 ms
408,064 KB
testcase_12 AC 1,375 ms
453,504 KB
testcase_13 AC 226 ms
107,392 KB
testcase_14 AC 1,093 ms
368,000 KB
testcase_15 AC 342 ms
135,296 KB
testcase_16 AC 1,294 ms
426,368 KB
testcase_17 AC 550 ms
206,080 KB
testcase_18 AC 705 ms
258,048 KB
testcase_19 AC 537 ms
202,880 KB
testcase_20 AC 282 ms
121,728 KB
testcase_21 AC 1,406 ms
438,400 KB
testcase_22 AC 1,232 ms
412,672 KB
testcase_23 AC 708 ms
259,584 KB
testcase_24 AC 824 ms
282,240 KB
testcase_25 AC 225 ms
99,328 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 1,028 ms
345,216 KB
testcase_28 AC 430 ms
166,400 KB
testcase_29 AC 1,384 ms
450,688 KB
testcase_30 AC 1,534 ms
504,192 KB
testcase_31 AC 1,566 ms
504,192 KB
testcase_32 AC 1,543 ms
504,320 KB
testcase_33 AC 1,545 ms
504,192 KB
testcase_34 AC 1,584 ms
504,192 KB
testcase_35 AC 1,531 ms
504,320 KB
testcase_36 AC 1,559 ms
504,320 KB
testcase_37 AC 1,550 ms
504,192 KB
testcase_38 AC 1,559 ms
504,192 KB
testcase_39 AC 1,576 ms
504,320 KB
testcase_40 AC 1,547 ms
504,192 KB
testcase_41 AC 1,574 ms
504,192 KB
testcase_42 AC 1,537 ms
504,320 KB
testcase_43 AC 1,554 ms
504,320 KB
testcase_44 AC 1,535 ms
504,192 KB
testcase_45 AC 1,670 ms
504,320 KB
testcase_46 AC 1,558 ms
504,192 KB
testcase_47 AC 1,547 ms
504,320 KB
testcase_48 AC 1,561 ms
504,320 KB
testcase_49 AC 1,564 ms
504,192 KB
testcase_50 AC 1,539 ms
504,192 KB
testcase_51 AC 1,579 ms
504,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

int main(){
	int N;
	cin >> N;
	int n2 = N*2;
	vector<ll> A(n2);
	for(int i=0; i<n2; i++){
		cin >> A[i];
	}
	vector<ll> B(n2);
	for(int i=0; i<n2; i++){
		cin >> B[i];
	}

	vector<int> idx(n2);
	iota(idx.begin(), idx.end(), 0);
	sort(idx.begin(), idx.end(), [&](int i, int j) -> bool{
				return A[i]+B[i] < A[j]+B[j];
			});

	vector seen(n2+1, vector(n2+1, vector<bool>(2)));
	vector memo(n2+1, vector(n2+1, vector<ll>(2)));
	auto dp = [&](auto& dp, int l, int r, bool f) -> ll{
		if(!seen[l][r][f]){
			seen[l][r][f] = true;

			if(r-l==1){
				if(f){
					memo[l][r][f] = A[idx[l]];
				}else{
					memo[l][r][f] = -B[idx[l]];
				}
			}else{
				if(f){
					memo[l][r][f] = min(dp(dp,l+1,r,!f)+A[idx[l]], dp(dp,l,r-1,!f)+A[idx[r-1]]);
				}else{
					memo[l][r][f] = max(dp(dp,l+1,r,!f)-B[idx[l]], dp(dp,l,r-1,!f)-B[idx[r-1]]);
				}
			}
		}

		return memo[l][r][f];
	};

	cout << dp(dp, 0, n2, true) << endl;

	return 0;
}
0