結果
問題 | No.34 砂漠の行商人 |
ユーザー | k |
提出日時 | 2021-02-25 17:23:14 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 573 ms / 5,000 ms |
コード長 | 1,203 bytes |
コンパイル時間 | 2,874 ms |
コンパイル使用メモリ | 226,612 KB |
実行使用メモリ | 83,200 KB |
最終ジャッジ日時 | 2024-10-01 07:45:27 |
合計ジャッジ時間 | 5,902 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 1 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 10 ms
6,820 KB |
testcase_05 | AC | 16 ms
7,296 KB |
testcase_06 | AC | 3 ms
6,820 KB |
testcase_07 | AC | 27 ms
10,112 KB |
testcase_08 | AC | 46 ms
14,208 KB |
testcase_09 | AC | 187 ms
34,048 KB |
testcase_10 | AC | 77 ms
21,504 KB |
testcase_11 | AC | 40 ms
15,616 KB |
testcase_12 | AC | 13 ms
6,816 KB |
testcase_13 | AC | 573 ms
83,200 KB |
testcase_14 | AC | 487 ms
72,576 KB |
testcase_15 | AC | 32 ms
10,240 KB |
testcase_16 | AC | 29 ms
10,368 KB |
testcase_17 | AC | 62 ms
17,536 KB |
testcase_18 | AC | 3 ms
6,816 KB |
testcase_19 | AC | 178 ms
36,096 KB |
testcase_20 | AC | 254 ms
46,208 KB |
testcase_21 | AC | 3 ms
6,816 KB |
testcase_22 | AC | 123 ms
27,904 KB |
testcase_23 | AC | 46 ms
14,080 KB |
testcase_24 | AC | 272 ms
50,176 KB |
testcase_25 | AC | 57 ms
15,744 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; const int INF = 1<<30; int dy[] = {0, 1, 0, -1}; int dx[] = {1, 0, -1, 0}; int main() { ios_base::sync_with_stdio(0); cin.tie(0); int n, v, sx, sy, gx, gy; cin >> n >> v >> sx >> sy >> gx >> gy; --sx, --sy; --gx, --gy; vector<vector<int> > bd(n, vector<int>(n)); for (int i = 0; i < n; i++) for (int j = 0; j < n; j++) cin >> bd[i][j]; vector<vector<map<int, int> > > dist(n, vector<map<int, int> >(n)); queue<tuple<int, int, int, int> > q; q.emplace(sy, sx, v, 0); dist[sy][sx][v] = 0; while (!q.empty()) { int y, x, w, d; tie(y, x, w, d) = q.front(); q.pop(); for (int k = 0; k < 4; k++) { int y2 = y + dy[k]; int x2 = x + dx[k]; if (y2 < 0 || y2 >= n) continue; if (x2 < 0 || x2 >= n) continue; int w2 = w - bd[y2][x2]; if (w2 <= 0) continue; if (dist[y2][x2].size() && dist[y2][x2].rbegin()->first >= w2) continue; dist[y2][x2][w2] = d + 1; q.emplace(y2, x2, w2, d + 1); } } int ret = INF; for (auto &[k, v]: dist[gy][gx]) { ret = min(ret, v); } if (ret == INF) ret = -1; cout << ret << endl; return 0; }