結果

問題 No.783 門松計画
ユーザー ei1333333ei1333333
提出日時 2019-01-11 21:45:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 937 bytes
コンパイル時間 1,964 ms
コンパイル使用メモリ 201,468 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-07 12:42:31
合計ジャッジ時間 2,778 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,632 KB
testcase_01 AC 3 ms
5,760 KB
testcase_02 AC 3 ms
5,632 KB
testcase_03 AC 3 ms
5,760 KB
testcase_04 AC 3 ms
5,632 KB
testcase_05 AC 3 ms
5,760 KB
testcase_06 AC 3 ms
5,632 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 4 ms
5,632 KB
testcase_10 AC 7 ms
5,504 KB
testcase_11 AC 34 ms
5,760 KB
testcase_12 AC 14 ms
5,632 KB
testcase_13 AC 4 ms
5,632 KB
testcase_14 AC 4 ms
5,760 KB
testcase_15 AC 3 ms
5,760 KB
testcase_16 AC 3 ms
5,504 KB
testcase_17 AC 3 ms
5,632 KB
testcase_18 AC 3 ms
5,632 KB
testcase_19 AC 4 ms
5,632 KB
testcase_20 AC 3 ms
5,632 KB
testcase_21 AC 2 ms
5,504 KB
testcase_22 WA -
testcase_23 AC 3 ms
5,504 KB
testcase_24 AC 3 ms
5,632 KB
testcase_25 AC 3 ms
5,504 KB
testcase_26 AC 3 ms
5,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

using namespace std;

const int INF = 1 << 30;

int dp[51][52][52][4];
int N, L[50], W[50];

bool uku(int a, int b, int c) {
  if(a == b || a == c || b == c) return false;
  int s = min({a, b, c});
  int t = max({a, b, c});
  return (s == b || t == b);
}


int rec(int rest, int l1, int l2, int proc) {
  if(~dp[rest][l1][l2][proc]) return dp[rest][l1][l2][proc];
  int ret = proc < 2 ? -INF : 0;
  for(int i = 0; i < N; i++) {
    if(rest - W[i] < 0) continue;
    if(uku(l1, l2, L[i])) ret = max(ret, rec(rest - W[i], l2, L[i], min(proc + 1, 3)) + L[i]);
  }
  return dp[rest][l1][l2][proc] = ret;
}

int main() {
  int K;
  cin >> N >> K;
  for(int i = 0; i < N; i++) cin >> L[i];
  for(int i = 0; i < N; i++) cin >> W[i];
  memset(dp, -1, sizeof(dp));
  int ret = 0;
  for(int i = 0; i <= 50; i++) {
    for(int j = 0; j <= 50; j++) {
      ret = max(ret, rec(K, i, j, 0));
    }
  }
  cout << ret << endl;
}
0