結果

問題 No.34 砂漠の行商人
ユーザー 古寺いろは古寺いろは
提出日時 2015-04-15 20:26:34
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 764 ms / 5,000 ms
コード長 1,030 bytes
コンパイル時間 1,332 ms
コンパイル使用メモリ 166,704 KB
実行使用メモリ 83,032 KB
最終ジャッジ日時 2024-06-28 10:16:29
合計ジャッジ時間 5,557 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 4 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 18 ms
14,040 KB
testcase_05 AC 23 ms
17,244 KB
testcase_06 AC 10 ms
11,992 KB
testcase_07 AC 36 ms
25,828 KB
testcase_08 AC 44 ms
30,188 KB
testcase_09 AC 232 ms
43,620 KB
testcase_10 AC 38 ms
24,960 KB
testcase_11 AC 505 ms
76,544 KB
testcase_12 AC 12 ms
9,948 KB
testcase_13 AC 764 ms
83,032 KB
testcase_14 AC 572 ms
76,268 KB
testcase_15 AC 4 ms
6,944 KB
testcase_16 AC 40 ms
16,220 KB
testcase_17 AC 3 ms
6,940 KB
testcase_18 AC 7 ms
6,944 KB
testcase_19 AC 177 ms
44,908 KB
testcase_20 AC 309 ms
59,372 KB
testcase_21 AC 6 ms
7,148 KB
testcase_22 AC 9 ms
8,812 KB
testcase_23 AC 4 ms
6,944 KB
testcase_24 AC 405 ms
66,800 KB
testcase_25 AC 28 ms
14,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;

int dp[100][100][2001];
int board[100][100];

int N;
bool ok(int a, int b){
	return a >= 0 && b >= 0 && a < N && b < N;
}

int dy[]{1, 0, -1, 0};
int dx[]{0, 1, 0, -1};

int main() {
	int V, Sx, Sy, Gx, Gy;
	cin >> N >> V >> Sx >> Sy >> Gx >> Gy;

	Sy--; Sx--; Gy--; Gx--;
	for (int i = 0; i < N; i++)
	{
		for (int j = 0; j < N; j++)
		{
			cin >> board[i][j];
		}
	}

	V = min(V, 2000);
	dp[Sy][Sx][V] = 1;
	queue<tuple<int, int, int>> q;
	q.push(make_tuple(Sy, Sx, V));

	while (!q.empty()){
		auto now = q.front(); q.pop();
		int y = get<0>(now);
		int x = get<1>(now);
		int v = get<2>(now);

		for (int k = 0; k < 4; k++)
		{
			int ny = y + dy[k];
			int nx = x + dx[k];
			if (!ok(ny, nx)) continue;
			int nv = v - board[ny][nx];
			if (nv <= 0) continue;
			if (dp[ny][nx][nv]) continue;
			if (ny == Gy && nx == Gx){
				cout << dp[y][x][v] << endl;
				return 0;
			}
			dp[ny][nx][nv] = dp[y][x][v] + 1;
			q.push(make_tuple(ny, nx, nv));
		}
	}

	cout << -1 << endl;
}
0