結果

問題 No.496 ワープクリスタル (給料日前編)
ユーザー nenuonnenuon
提出日時 2017-06-23 18:56:26
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 837 bytes
コンパイル時間 888 ms
コンパイル使用メモリ 91,384 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-14 21:29:03
合計ジャッジ時間 1,718 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <algorithm>
#include <cstdio>
#include <iostream>
#include <map>
#include <cmath>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <string>
#include <vector>
#include <stdlib.h>
#include <stdio.h>
#include <bitset>
using namespace std;
#define FOR(I,A,B) for(int I = (A); I < (B); ++I)

int main(){
  int gy,gx,n,f;
  cin>>gx>>gy>>n>>f;
  int x[n],y[n],c[n];
  FOR(i,0,n){
    cin >> x[i] >> y[i] >> c[i];
  }
  int dp[n+1][gy+1][gx+1];
  FOR(j,0,gy+1){
    FOR(k,0,gx+1){
      dp[0][j][k] = (j + k) * f;
    }
  }
  FOR(i,1,n+1){
    FOR(j,0,gy+1){
      FOR(k,0,gx+1){
        dp[i][j][k] = dp[i-1][j][k];
        if(j >= y[i] && k >= x[i]){
          dp[i][j][k] = min(dp[i-1][j-y[i-1]][k-x[i-1]]+c[i-1], dp[i-1][j][k]);
        }
      }
    }
  }
  cout << dp[n][gy][gx] << endl;
  return 0;
}
0