結果

問題 No.34 砂漠の行商人
ユーザー furonfuron
提出日時 2023-06-16 21:13:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,370 ms / 5,000 ms
コード長 1,754 bytes
コンパイル時間 1,553 ms
コンパイル使用メモリ 137,616 KB
実行使用メモリ 398,336 KB
最終ジャッジ日時 2024-06-24 12:42:06
合計ジャッジ時間 7,815 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 11 ms
6,940 KB
testcase_05 AC 11 ms
6,940 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 17 ms
6,940 KB
testcase_08 AC 24 ms
8,320 KB
testcase_09 AC 421 ms
232,064 KB
testcase_10 AC 342 ms
398,208 KB
testcase_11 AC 1,370 ms
398,336 KB
testcase_12 AC 8 ms
6,940 KB
testcase_13 AC 933 ms
102,528 KB
testcase_14 AC 710 ms
98,688 KB
testcase_15 AC 34 ms
43,392 KB
testcase_16 AC 93 ms
82,560 KB
testcase_17 AC 23 ms
30,848 KB
testcase_18 AC 9 ms
9,344 KB
testcase_19 AC 175 ms
24,192 KB
testcase_20 AC 321 ms
39,296 KB
testcase_21 AC 6 ms
6,940 KB
testcase_22 AC 34 ms
38,784 KB
testcase_23 AC 88 ms
117,248 KB
testcase_24 AC 656 ms
207,872 KB
testcase_25 AC 24 ms
9,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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];
		if (y == gy && x == gx) {
			cout << d << endl;
			return 0;
		}

		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 });

		}

	}
	cout << -1 << endl;

	return 0;
}
0