結果
問題 | No.34 砂漠の行商人 |
ユーザー | pekempey |
提出日時 | 2015-08-19 19:56:58 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 3,870 ms / 5,000 ms |
コード長 | 1,679 bytes |
コンパイル時間 | 1,701 ms |
コンパイル使用メモリ | 170,548 KB |
実行使用メモリ | 200,804 KB |
最終ジャッジ日時 | 2024-06-28 10:21:27 |
合計ジャッジ時間 | 20,663 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 130 ms
198,792 KB |
testcase_01 | AC | 126 ms
198,732 KB |
testcase_02 | AC | 127 ms
198,800 KB |
testcase_03 | AC | 125 ms
198,716 KB |
testcase_04 | AC | 180 ms
199,052 KB |
testcase_05 | AC | 155 ms
198,940 KB |
testcase_06 | AC | 105 ms
198,652 KB |
testcase_07 | AC | 157 ms
198,900 KB |
testcase_08 | AC | 177 ms
198,916 KB |
testcase_09 | AC | 1,185 ms
199,904 KB |
testcase_10 | AC | 173 ms
198,936 KB |
testcase_11 | AC | 2,825 ms
200,672 KB |
testcase_12 | AC | 120 ms
199,000 KB |
testcase_13 | AC | 3,870 ms
200,676 KB |
testcase_14 | AC | 2,812 ms
200,676 KB |
testcase_15 | AC | 101 ms
198,876 KB |
testcase_16 | AC | 248 ms
199,196 KB |
testcase_17 | AC | 96 ms
198,744 KB |
testcase_18 | AC | 106 ms
199,016 KB |
testcase_19 | AC | 917 ms
200,672 KB |
testcase_20 | AC | 1,605 ms
200,804 KB |
testcase_21 | AC | 101 ms
198,780 KB |
testcase_22 | AC | 110 ms
199,012 KB |
testcase_23 | AC | 98 ms
198,920 KB |
testcase_24 | AC | 2,092 ms
200,672 KB |
testcase_25 | AC | 187 ms
199,064 KB |
ソースコード
#include <bits/stdc++.h> #define rep(i, a) for (int i = 0; i < (a); i++) #define rep2(i, a, b) for (int i = (a); i < (b); i++) #define repr(i, a) for (int i = (a) - 1; i >= 0; i--) #define repr2(i, a, b) for (int i = (b) - 1; i >= (a); i--) using namespace std; typedef long long ll; const ll inf = 1e9; const ll mod = 1e9 + 7; short dp[100][100][10000]; // y, x, damage => dist typedef tuple<int, int, int, int> P; // dist, damage, y, x int N, V, sy, sx, gy, gx, L[100][100]; int main() { cin >> N >> V >> sy >> sx >> gy >> gx; sy--; sx--; gy--; gx--; rep (j, N) rep (i, N) cin >> L[i][j]; priority_queue<P, vector<P>, greater<P>> q; q.emplace(0, 0, sy, sx); rep (i, 100) rep (j, 100) rep (k, 10000) dp[i][j][k] = 10101; dp[sy][sx][0] = 0; while (!q.empty()) { P p = q.top(); q.pop(); int dist = get<0>(p); int damage = get<1>(p); int y = get<2>(p); int x = get<3>(p); if (y == gy && x == gx) break; if (dp[y][x][damage] < dist) continue; int dy[] = {0, 1, 0, -1}; int dx[] = {1, 0, -1, 0}; rep (k, 4) { int ny = y + dy[k]; int nx = x + dx[k]; if (ny < 0 || ny >= N || nx < 0 || nx >= N) continue; if (damage + L[ny][nx] >= V) continue; if (dp[ny][nx][damage + L[ny][nx]] > dp[y][x][damage] + 1) { dp[ny][nx][damage + L[ny][nx]] = dp[y][x][damage] + 1; q.emplace(dp[ny][nx][damage + L[ny][nx]], damage + L[ny][nx], ny, nx); } } } int ans = inf; rep (k, V) { ans = min(ans, (int)dp[gy][gx][k]); } if (ans == 10101) { cout << -1 << endl; } else { cout << ans << endl; } return 0; }