結果
問題 | No.496 ワープクリスタル (給料日前編) |
ユーザー | recososo |
提出日時 | 2020-02-27 11:25:26 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 804 bytes |
コンパイル時間 | 1,575 ms |
コンパイル使用メモリ | 174,804 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-13 15:48:51 |
合計ジャッジ時間 | 2,464 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 6 ms
6,816 KB |
testcase_09 | AC | 6 ms
6,820 KB |
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 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
ソースコード
#include<bits/stdc++.h> using namespace std; typedef long long ll; const int INF=1e9; int main(){ int gx,gy,n,f;cin >> gx >> gy >> n >> f; vector<int> x(n),y(n),c(n); for(int i=0;i<n;i++){ cin >> x[i] >> y[i] >> c[i]; } vector<vector<vector<int>>> dp(n+1,vector<vector<int>>(gx+1,vector<int>(gy+1))); for(int i=0;i<=gx;i++){ for(int j=0;j<=gy;j++){ for(int k=0;k<=n;k++){ dp[k][i][j]=(i+j)*f; } } } for(int i=0;i<n;i++){ for(int j=0;j<=gx;j++){ for(int k=0;k<=gy;k++){ if(j+x[i]<=gx&&k+y[i]<=gy){ dp[i+1][j+x[i]][k+y[i]]=min(dp[i+1][j+x[i]][k+y[i]],dp[i][j][k]+c[i]); } } } } cout << dp[n][gx][gy] << endl; }