結果
問題 | No.2317 Expression Menu |
ユーザー | NP |
提出日時 | 2023-05-26 22:00:00 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 798 bytes |
コンパイル時間 | 817 ms |
コンパイル使用メモリ | 72,468 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-07 06:48:30 |
合計ジャッジ時間 | 2,629 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 3 ms
5,376 KB |
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 | AC | 32 ms
5,376 KB |
testcase_24 | AC | 30 ms
5,376 KB |
testcase_25 | AC | 31 ms
5,376 KB |
testcase_26 | AC | 30 ms
5,376 KB |
testcase_27 | AC | 30 ms
5,376 KB |
testcase_28 | AC | 30 ms
5,376 KB |
testcase_29 | AC | 31 ms
5,376 KB |
testcase_30 | AC | 31 ms
5,376 KB |
testcase_31 | AC | 30 ms
5,376 KB |
testcase_32 | AC | 30 ms
5,376 KB |
testcase_33 | AC | 2 ms
5,376 KB |
testcase_34 | AC | 2 ms
5,376 KB |
testcase_35 | AC | 2 ms
5,376 KB |
testcase_36 | AC | 2 ms
5,376 KB |
testcase_37 | AC | 2 ms
5,376 KB |
testcase_38 | WA | - |
testcase_39 | AC | 25 ms
5,376 KB |
ソースコード
#include <iostream> #include <vector> using namespace std; int main() { int N, X, Y; cin >> N >> X >> Y; vector<vector<int>> dp(X + 1, vector<int>(Y + 1, -1)); dp[0][0] = 0; for (int k = 0; k < N; k++) { int A, B, C; cin >> A >> B >> C; for (int i = X - A; i >= 0; i--) { for (int j = Y - B; j >= 0; j--) { if (dp[i][j] != -1) { dp[i + A][j + B] = max(dp[i + A][j + B], dp[i][j] + C); } } } } int ans = 0; for (int i = 0; i <= X; i++) { for (int j = 0; j <= Y; j++) { if (dp[i][j] != -1) { ans = max(ans, dp[i][j]); } } } cout << ans << endl; return 0; }