結果

問題 No.1522 Unfairness
ユーザー simansiman
提出日時 2023-05-05 19:36:38
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,060 bytes
コンパイル時間 4,655 ms
コンパイル使用メモリ 142,892 KB
実行使用メモリ 73,856 KB
最終ジャッジ日時 2024-05-02 13:50:25
合計ジャッジ時間 6,956 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 20 ms
21,632 KB
testcase_04 AC 6 ms
8,064 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 WA -
testcase_07 AC 30 ms
30,464 KB
testcase_08 AC 28 ms
29,952 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 8 ms
10,880 KB
testcase_11 WA -
testcase_12 AC 13 ms
15,488 KB
testcase_13 AC 40 ms
41,728 KB
testcase_14 WA -
testcase_15 AC 81 ms
73,728 KB
testcase_16 AC 77 ms
73,856 KB
testcase_17 AC 79 ms
73,856 KB
testcase_18 AC 81 ms
73,728 KB
testcase_19 AC 76 ms
73,856 KB
testcase_20 AC 71 ms
73,856 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 2 ms
5,376 KB
testcase_28 RE -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cassert>
#include <cmath>
#include <algorithm>
#include <iostream>
#include <iomanip>
#include <climits>
#include <map>
#include <queue>
#include <set>
#include <cstring>
#include <vector>

using namespace std;
typedef long long ll;

int main() {
  int N, M;
  cin >> N >> M;

  vector<int> A(N);
  for (int i = 0; i < N; ++i) {
    cin >> A[i];
  }

  sort(A.begin(), A.end());
  reverse(A.begin(), A.end());

  ll dp[N][M + 1];
  memset(dp, -1, sizeof(dp));
  dp[0][0] = 0;
  dp[1][A[0] - A[1]] = A[0];

  for (int i = 1; i < N; ++i) {
    for (int j = 0; j <= M; ++j) {
      dp[i][j] = max(dp[i][j], dp[i - 1][j]);

      if (i - 2 >= 0) {
        int ba = j - (A[i - 1] - A[i]);
        if (ba >= 0 && dp[i - 2][ba] >= 0) {
          dp[i][j] = max(dp[i][j], dp[i - 2][ba] + A[i - 1]);
        }
      }
    }

    /*
    for (int j = 0; j <= M; ++j) {
      cerr << dp[i][j] << " ";
    }
    cerr << endl;
    */
  }

  ll ans = 0;

  for (int m = 0; m <= M; ++m) {
    ans = max(ans, dp[N - 1][m]);
  }

  cout << ans << endl;

  return 0;
}
0