結果

問題 No.34 砂漠の行商人
ユーザー kyuridenamida
提出日時 2016-02-11 10:32:11
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 4,815 ms / 5,000 ms
コード長 1,198 bytes
コンパイル時間 1,565 ms
コンパイル使用メモリ 161,568 KB
実行使用メモリ 75,676 KB
最終ジャッジ日時 2025-03-25 05:19:40
合計ジャッジ時間 58,904 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 26
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define rep(i,n) for(int (i) = 0 ; (i) < (int)(n) ; (i)++)
#define REP(i,a,b) for(int (i) = a ; (int)(i) <= (int)(b) ; (i)++)
#define all(n) (n).begin(),(n).end()
typedef vector<int> Vi;
typedef vector<Vi> VVi;
typedef pair<long long,long long> Pii;
typedef vector<Pii> VPii;


bool done[100][100][1802];
int L[100][100];
int dx[] = {-1,0,1,0};
int dy[] = {0,-1,0,1};

struct NODE{
	int x,y,c,h;
};
bool operator < (const NODE &a,const NODE &b){
	return a.h < b.h;
}

int main(){
	int N,V,Sx,Sy,Gx,Gy;
	cin >> N >> V >> Sx >> Sy >> Gx >> Gy;
	Sx--,Sy--;
	Gx--,Gy--;
	rep(i,N) rep(j,N) cin >> L[i][j];
	
	priority_queue<NODE> Q;
	Q.push({Sx,Sy,0,V});
	unsigned int ans = -1;
	while( Q.size() ){
		auto q = Q.top(); Q.pop();
		if( q.h <= 0 ) continue;
		if( q.c > 1800 ) continue;
		if( done[q.y][q.x][q.c] ) continue;
		else done[q.y][q.x][q.c] = true;
		if( q.y == Gy && q.x == Gx ){
			ans = min(ans,(unsigned)q.c);
			continue;
		}
		for(int i = 0 ; i < 4 ; i++){
			int tx = q.x + dx[i];
			int ty = q.y + dy[i];
			if( tx < 0 || ty < 0 || ty >= N || tx >= N ) continue;
			Q.push({tx,ty,q.c+1,q.h-L[ty][tx]});
		}
	}
	cout << (int) ans << endl;
	
}
0