結果

問題 No.496 ワープクリスタル (給料日前編)
ユーザー nenuonnenuon
提出日時 2017-06-23 17:48:33
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,147 bytes
コンパイル時間 1,102 ms
コンパイル使用メモリ 91,364 KB
実行使用メモリ 15,700 KB
最終ジャッジ日時 2024-04-14 06:59:43
合計ジャッジ時間 5,220 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 16 ms
15,408 KB
testcase_07 AC 2 ms
6,940 KB
testcase_08 AC 387 ms
15,624 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 6 ms
6,940 KB
testcase_12 WA -
testcase_13 AC 44 ms
6,940 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 44 ms
6,944 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 83 ms
8,060 KB
testcase_20 WA -
testcase_21 AC 24 ms
6,940 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 410 ms
15,580 KB
testcase_25 AC 420 ms
15,556 KB
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[301][gy+1][gx+1];
  FOR(i,0,301){
    FOR(j,0,gy+1){
      FOR(k,0,gx+1){
        dp[i][j][k] = 9999999;
      }
    }
  }
  dp[0][0][0] = 0;
  FOR(i,0,300){
    FOR(j,0,gy+1){
      FOR(k,0,gx+1){
        if(dp[i][j][k] == 9999999) continue;
        dp[i+1][j][k] = dp[i][j][k];
        if(j+1 <= gy) dp[i+1][j+1][k] = min(dp[i+1][j+1][k], dp[i][j][k] + f);
        if(k+1 <= gx) dp[i+1][j][k+1] = min(dp[i+1][j][k+1], dp[i][j][k] + f);
        FOR(l,0,n){
          int nx = k + x[l], ny = j + y[l];
          if(nx > gx || ny > gy) continue;
          dp[i+1][ny][nx] = min(dp[i+1][ny][nx], dp[i][j][k] + c[l]);
        }
      }
    }
  }
  cout << dp[300][gy][gx] << endl;
  return 0;
}
0