結果

問題 No.2856 Junk Market Game
ユーザー MMMM
提出日時 2024-08-25 15:19:20
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,631 bytes
コンパイル時間 5,903 ms
コンパイル使用メモリ 337,440 KB
実行使用メモリ 58,368 KB
最終ジャッジ日時 2024-08-25 15:19:33
合計ジャッジ時間 11,837 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
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 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 WA -
testcase_50 AC 144 ms
58,112 KB
testcase_51 AC 144 ms
58,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/all>
#define chmin(x,y) (x) = min((x),(y))
#define chmax(x,y) (x) = max((x),(y))
using namespace std;
using namespace atcoder;
using ll = long long;
const ll mod = 998244353;
using mint = modint998244353;
using Graph = vector<vector<int>>;
const vector<int> dx ={1,0,-1,0}, dy = {0,1,0,-1};

long long modpow(long long a, long long n, long long mod) {
	long long res = 1;
	while (n > 0) {
		if (n & 1) res = res * a % mod;
		a = a * a % mod;
		n >>= 1;
	}
	return res;
}

int main() {
  // input
  int N; cin >> N;
  vector<ll> A(2*N),B(2*N);
  for(int i = 0; i < 2*N; i++) cin >> A[i];
  for(int i = 0; i < 2*N; i++) cin >> B[i];
  
  // solve: Kukan DP O(N^2)
  vector<vector<vector<ll>>> dp(N+1,vector<vector<ll>>(N+1,vector<ll>(3)));
  
  for(int i = 0; i < N; i++){
    if(A[2*i] - B[2*i+1] <= A[2*i+1] - B[2*i])
      dp[i][i+1] = {A[2*i] - B[2*i+1], 2*i, 2*i+1};
    else
      dp[i][i+1] = {A[2*i+1] - B[2*i], 2*i+1, 2*i};
  }
  
  for(int d = 2; d <= N; d++){
    for(int l = 0; l + d <= N; l++){
      int r = l+d;
      
      dp[l][r] = dp[l][r-1];
      dp[l][r][0] += dp[r-1][r][0];
      
      int swp1 = dp[l][r-1][2], swp2 = dp[r-1][r][1];
      ll X = dp[l][r][0] + B[swp1] - B[swp2] - A[swp2] + A[swp1];
      
      int swp3 = dp[r-1][r][2], swp4 = dp[l][r-1][1];
      ll Y = dp[l][r][0] + B[swp3] - B[swp4] - A[swp4] + A[swp3];
      if(min(X,Y) > dp[l][r][0]){
        if(min(X,Y) == X)
          dp[l][r] = {X,dp[l][r-1][1],swp2};
        else
          dp[l][r] = {Y,dp[r-1][r][1],swp4};
      }
      
    }
  }
  
  
  // output
  cout << dp[0][N][0] << endl;
}
0