結果
問題 | No.2852 Yakitori Optimization Problem |
ユーザー | manabeai |
提出日時 | 2024-08-25 14:21:18 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,054 bytes |
コンパイル時間 | 2,370 ms |
コンパイル使用メモリ | 206,808 KB |
実行使用メモリ | 19,136 KB |
最終ジャッジ日時 | 2024-08-25 14:21:35 |
合計ジャッジ時間 | 9,077 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
ソースコード
#include <bits/stdc++.h> #ifdef DEBUG #include "cpp-dump/dump.hpp" #define dump(...) cpp_dump(__VA_ARGS__) #else #define dump(...) #endif using namespace std; typedef long long ll; void solve() { ll n,k; cin >> n >> k; vector<ll> A(n), B(n), C(n); for (ll i = 0; i < n; ++i) cin >> A[i]; for (ll i = 0; i < n; ++i) cin >> B[i]; for (ll i = 0; i < n; ++i) cin >> C[i]; // vector<vector<ll>> dp(n+3, vector<ll>(k+3,0)); vector<ll> dp(k+2), old(k+2); // i本目までj個塩でトッピングするときの最大値 for (ll i = 0; i < n; ++i) { for (ll j = 0; j < k; ++j) { if (j > i) continue; // dp[i+1][j] = max(dp[i+1][j], dp[i][j]+A[i]+C[i]); // dp[i+1][j+1] = max(dp[i+1][j+1], dp[i][j]+A[i]+B[i]); dp[j] = max(dp[j], old[j]+A[i]+C[i]); dp[j+1] = max(dp[j+1], old[j]+A[i]+B[i]); } swap(old,dp); dp.resize(k+3, 0); } dump(dp); cout << old[k] << endl; } int main() { solve(); return 0; }