結果
問題 | No.496 ワープクリスタル (給料日前編) |
ユーザー | 🍮かんプリン |
提出日時 | 2019-04-30 19:07:42 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,240 bytes |
コンパイル時間 | 754 ms |
コンパイル使用メモリ | 77,208 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-09 20:41:09 |
合計ジャッジ時間 | 1,783 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 1 ms
6,944 KB |
testcase_03 | AC | 1 ms
6,940 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,940 KB |
testcase_07 | AC | 1 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,944 KB |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | AC | 2 ms
6,940 KB |
testcase_14 | AC | 2 ms
6,944 KB |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | AC | 2 ms
6,944 KB |
testcase_19 | WA | - |
testcase_20 | AC | 1 ms
6,940 KB |
testcase_21 | AC | 2 ms
6,944 KB |
testcase_22 | WA | - |
testcase_23 | AC | 2 ms
6,948 KB |
testcase_24 | AC | 2 ms
6,944 KB |
testcase_25 | AC | 2 ms
6,940 KB |
testcase_26 | AC | 2 ms
6,944 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <map> #include <string> #include <queue> #include <stack> #include <math.h> #include <set> #include <cstdio> #define ALL(obj) (obj).begin(),(obj).end() #define RALL(obj) (obj).rbegin(),(obj).rend() #define P pair<int, int> #define MOD 1000000007 #define INF 1012345678 #define NINF (-2147483647-1) #define LLINF 9223372036854775807 using ll = long long; using namespace std; int main() { cin.tie(0); ios::sync_with_stdio(false); int gx, gy, N, F; cin >> gx >> gy >> N >> F; vector<vector<int>> dp(gx + 1, vector<int>(gy + 1,INF)); dp[0][0] = 0; for (int i = 0; i < N; i++) { int x, y, cost; cin >> x >> y >> cost; for (int j = 0; j <= gx; j++) { for (int k = 0; k <= gy; k++) { if (j - x >= 0 && k - y >= 0) { dp[j][k] = min(dp[j][k], dp[j - x][k - y] + cost); } } } } int ans = INF; for (int i = 0; i <= gx; i++) { for (int j = 0; j <= gy; j++) { ans = min(ans, dp[i][j] + (gx - i + gy - j) * F); } } cout << ans << endl; getchar(); getchar(); }