結果
問題 | No.496 ワープクリスタル (給料日前編) |
ユーザー | jupiro |
提出日時 | 2020-02-01 16:56:46 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,801 bytes |
コンパイル時間 | 1,116 ms |
コンパイル使用メモリ | 116,508 KB |
実行使用メモリ | 12,712 KB |
最終ジャッジ日時 | 2024-09-18 20:06:16 |
合計ジャッジ時間 | 2,161 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | WA | - |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 10 ms
9,600 KB |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 3 ms
5,376 KB |
testcase_13 | AC | 3 ms
5,376 KB |
testcase_14 | AC | 5 ms
5,888 KB |
testcase_15 | AC | 4 ms
5,376 KB |
testcase_16 | AC | 4 ms
5,376 KB |
testcase_17 | AC | 4 ms
6,272 KB |
testcase_18 | WA | - |
testcase_19 | AC | 4 ms
5,888 KB |
testcase_20 | AC | 4 ms
6,784 KB |
testcase_21 | AC | 3 ms
5,376 KB |
testcase_22 | AC | 11 ms
9,600 KB |
testcase_23 | AC | 11 ms
9,600 KB |
testcase_24 | AC | 11 ms
9,600 KB |
testcase_25 | AC | 12 ms
9,600 KB |
testcase_26 | AC | 11 ms
9,600 KB |
ソースコード
#include <cstdio> #include <iostream> #include <string> #include <sstream> #include <stack> #include <algorithm> #include <cmath> #include <queue> #include <map> #include <set> #include <cstdlib> #include <bitset> #include <tuple> #include <assert.h> #include <deque> #include <bitset> #include <iomanip> #include <limits> #include <chrono> #include <random> #include <array> #include <unordered_map> #include <functional> #include <complex> template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } const long long MAX = 5100000; const long long INF = 1LL << 60; const long long mod = 1000000007LL; //const long long mod = 998244353LL; using namespace std; typedef unsigned long long ull; typedef long long ll; ll dp[150][150][70]; ll dh[2] = { 1,0 }; ll dw[2] = { 0,1 }; int main() { /* cin.tie(nullptr); ios::sync_with_stdio(false); */ ll gh, gw, n, f; scanf("%lld %lld %lld %lld", &gh, &gw, &n, &f); ll H = gh + 1; ll W = gw + 1; vector<ll> x(n), y(n), c(n); for (ll i = 0; i < n; i++) scanf("%lld %lld %lld", &x[i], &y[i], &c[i]); for (ll i = 0; i <= gh; i++)for (ll j = 0; j <= gw; j++)for (ll k = 0; k <= n; k++) dp[i][j][k] = INF; dp[0][0][0] = 0; for (ll k = 0; k < n; k++) { for (ll i = 0; i <= gh; i++) { for (ll j = 0; j <= gw; j++) { for (ll l = 0; l < 2; l++) { ll nh = i + dh[l]; ll nw = j + dw[l]; if (nh >= H || nw >= W) continue; chmin(dp[nh][nw][k + 1], dp[i][j][k] + f); } chmin(dp[i][j][k + 1], dp[i][j][k]); ll nh = i + x[k]; ll nw = j + y[k]; if (nh >= H || nw >= W) continue; chmin(dp[nh][nw][k + 1], dp[i][j][k] + c[k]); } } } cout << dp[gh][gw][n] << endl; return 0; }