結果

問題 No.496 ワープクリスタル (給料日前編)
ユーザー ttakanottakano
提出日時 2017-12-02 14:11:41
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 782 bytes
コンパイル時間 1,245 ms
コンパイル使用メモリ 159,296 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-06 01:43:04
合計ジャッジ時間 3,583 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
#define print(x) cout<<x<<endl;
#define rep(i,a,b) for(int i=a;i<b;i++)
#define REP(i,a) for(int i=0;i<a;i++)
#define printall(n,array) for(int i=0;i<n;i++){cout<<array[i]<<" ";}cout<<endl;
typedef long long ll;
typedef pair<int, int> PI;
typedef pair<int, PI> V;
typedef vector<int> VE;
const ll mod = 1000000007; //10^9+7

int dp[102][102];

int main(){
  int X,Y,n,f;
  cin>>X>>Y>>n>>f;
  int x[52],y[52],c[52];
  REP(i,n){
    cin>>x[i]>>y[i]>>c[i];
  }
  REP(i,X+1)REP(j,Y+1){
    dp[i][j]=(i+j)*f;
  }
  REP(k,n){
    if(c[k]>(x[k]+y[k])*f)continue;
    REP(i,X+1)REP(j,Y+1){
      dp[i+x[k]][j+y[k]]=min(dp[i+x[k]][j+y[k]],dp[i][j]+c[k]);
      //print(i+x[i]<<" "<<j+y[i]<<" "<<dp[i+x[i]][j+y[i]])
    }
  }
  print(dp[X][Y]);
}
0