結果
問題 | No.34 砂漠の行商人 |
ユーザー | furon |
提出日時 | 2023-06-16 21:05:56 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,801 bytes |
コンパイル時間 | 1,426 ms |
コンパイル使用メモリ | 137,488 KB |
実行使用メモリ | 405,280 KB |
最終ジャッジ日時 | 2024-06-24 12:37:06 |
合計ジャッジ時間 | 12,661 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 3 ms
6,940 KB |
testcase_03 | AC | 4 ms
6,940 KB |
testcase_04 | AC | 11 ms
6,944 KB |
testcase_05 | AC | 11 ms
6,940 KB |
testcase_06 | AC | 3 ms
6,944 KB |
testcase_07 | AC | 17 ms
6,940 KB |
testcase_08 | AC | 23 ms
8,192 KB |
testcase_09 | AC | 4,483 ms
232,064 KB |
testcase_10 | TLE | - |
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 <iostream> #include <iomanip> #include <vector> #include <algorithm> #include <functional> #include <cmath> #include <string> #include <queue> #include <map> #include <bitset> #include <set> #include <stack> #include <numeric> #include <unordered_map> #include <random> using namespace std; using ll = long long; using vi = vector<int>; using vvi = vector<vi>; using vl = vector<ll>; using vvl = vector<vl>; using vb = vector<bool>; using vvb = vector<vb>; using vd = vector<double>; using vs = vector<string>; using pii = pair<int, int>; using pll = pair<ll, ll>; using pdd = pair<double, double>; using vpii = vector<pii>; using vpll = vector<pll>; using vpdd = vector<pdd>; const int inf = (1 << 30) - 1; const ll INF = 1LL << 60; const int MOD = 1000000007; const int dy[4] = { -1,0,1,0 }; const int dx[4] = { 0,1,0,-1 }; int main() { int n, V, sx, sy, gx, gy; cin >> n >> V >> sx >> sy >> gx >> gy; sx--; sy--; gx--; gy--; vvi g(n, vi(n)); int h = n, w = n; for (int y = 0; y < h; y++) { for (int x = 0; x < w; x++) { cin >> g[y][x]; } } vector<vvi> dist(n, vvi(n, vi(V + 1, inf))); dist[sy][sx][0] = 0; queue<pair<pii, int>> que; que.push({ {sy, sx} , 0 }); while (!que.empty()) { pair<pii, int> p = que.front(); que.pop(); auto [y, x] = p.first; int v = p.second; int d = dist[y][x][v]; for (int i = 0; i < 4; i++) { int y2 = y + dy[i]; int x2 = x + dx[i]; if (y2 < 0 || y2 > h - 1 || x2 < 0 || x2 > w - 1) continue; int c = g[y2][x2]; if (v + c >= V) continue; if (dist[y2][x2][v + c] <= d + 1) continue; dist[y2][x2][v + c] = d + 1; que.push({ {y2, x2}, v + c }); } } int ans = inf; for (int i = 0; i <= V; i++) { ans = min(ans, dist[gy][gx][i]); } if (ans == inf) ans = -1; cout << ans << endl; return 0; }