結果
問題 | No.34 砂漠の行商人 |
ユーザー | ninoinui |
提出日時 | 2020-07-25 06:39:47 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,194 bytes |
コンパイル時間 | 2,486 ms |
コンパイル使用メモリ | 219,120 KB |
実行使用メモリ | 814,824 KB |
最終ジャッジ日時 | 2024-06-26 09:08:02 |
合計ジャッジ時間 | 9,506 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 3 ms
5,248 KB |
testcase_02 | AC | 56 ms
7,424 KB |
testcase_03 | MLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int N, V, SX, SY, GX, GY; cin >> N >> V >> SX >> SY >> GX >> GY; SX--, SY--, GX--, GY--; vector<vector<int>> L(N, vector<int>(N)); for (int i = 0; i < N; i++) { for (int j = 0; j < N; j++) cin >> L.at(i).at(j); } vector dist(N, vector(N, vector(2000, INT_MAX))); dist.at(SY).at(SX).at(V) = 0; vector mx {-1, 0, 1, 0}; vector my {0, 1, 0, -1}; using t4 = tuple<int, int, int, int>; priority_queue<t4, vector<t4>, greater<t4>> PQ; PQ.push({0, SY, SX, V}); while (PQ.size()) { auto [d, y, x, v] = PQ.top(); PQ.pop(); if (d > dist.at(y).at(x).at(v)) continue; for (int i = 0; i < 4; i++) { int ny = y + my.at(i); int nx = x + mx.at(i); if (ny < 0 || ny >= N || nx < 0 || nx >= N) continue; int nv = v - L.at(ny).at(nx); if (nv <= 0) continue; int nd = d + 1; if (nd > dist.at(ny).at(nx).at(nv)) continue; dist.at(ny).at(nx).at(nv) = dist.at(y).at(x).at(v) + 1; PQ.push({nd, ny, nx, nv}); } } int ans = *min_element(dist.at(GY).at(GX).begin(), dist.at(GY).at(GX).end()); cout << ((ans == INT_MAX) ? -1 : ans) << "\n"; }