結果

問題 No.34 砂漠の行商人
ユーザー NotationNapNotationNap
提出日時 2015-05-01 02:40:14
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1,085 ms / 5,000 ms
コード長 1,108 bytes
コンパイル時間 1,397 ms
コンパイル使用メモリ 167,112 KB
実行使用メモリ 122,020 KB
最終ジャッジ日時 2024-06-28 10:17:16
合計ジャッジ時間 7,500 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
120,612 KB
testcase_01 AC 31 ms
120,476 KB
testcase_02 AC 36 ms
120,688 KB
testcase_03 AC 32 ms
120,520 KB
testcase_04 AC 67 ms
121,008 KB
testcase_05 AC 68 ms
120,876 KB
testcase_06 AC 37 ms
120,740 KB
testcase_07 AC 420 ms
121,056 KB
testcase_08 AC 163 ms
121,112 KB
testcase_09 AC 227 ms
121,292 KB
testcase_10 AC 47 ms
120,736 KB
testcase_11 AC 442 ms
121,792 KB
testcase_12 AC 39 ms
120,780 KB
testcase_13 AC 776 ms
122,020 KB
testcase_14 AC 575 ms
121,952 KB
testcase_15 AC 33 ms
120,560 KB
testcase_16 AC 62 ms
120,784 KB
testcase_17 AC 33 ms
120,520 KB
testcase_18 AC 35 ms
120,664 KB
testcase_19 AC 185 ms
121,648 KB
testcase_20 AC 299 ms
121,932 KB
testcase_21 AC 1,085 ms
121,656 KB
testcase_22 AC 37 ms
120,796 KB
testcase_23 AC 33 ms
120,704 KB
testcase_24 AC 379 ms
121,792 KB
testcase_25 AC 54 ms
120,924 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

typedef long long Int;
#define REP(i,n) for(int (i)=0;(i)<(int)(n);++(i))


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

int N, V, SX, SY, GX, GY;
int L[100][100];
int best[100][100][3000];

bool isin(int x, int y) {
	return 0 <= x && x < N && 0 <= y && y < N;
}

int main() {
	cin >> N >> V >> SY >> SX >> GY >> GX;
	SX--;
	SY--;
	GX--;
	GY--;
	REP(i, N) REP(j, N) cin >> L[i][j];	
	REP(i, 100)REP(j, 100) REP(k, 3000) best[i][j][k] = -1;
	queue<tuple<int, int, int>> q;
	q.push(make_tuple(SX, SY, 0));
	best[SX][SY][0] = 0;
	int ans = -1;
	while (!q.empty()) {
		auto t = q.front();
		q.pop();
		int x = get<0>(t);
		int y = get<1>(t);
		int v = get<2>(t);
		int step = best[x][y][v];

		if (x == GX && y == GY && v < V) {
			ans = step;
			break;
		}

		REP(i, 4) {
			int nx = x + dx[i];
			int ny = y + dy[i];
			if (isin(nx, ny)) {
				int nv = v + L[nx][ny];
				if (nv <= 2 * N * 10 + 100)
					if (best[nx][ny][nv] == -1) {
						best[nx][ny][nv] = step + 1;
						q.push(make_tuple(nx, ny, nv));
					}
			}
		}
	}
	cout << ans << endl;

}
0