結果

問題 No.34 砂漠の行商人
ユーザー kyuridenamidakyuridenamida
提出日時 2016-02-11 10:37:49
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 1,666 ms / 5,000 ms
コード長 1,323 bytes
コンパイル時間 1,373 ms
コンパイル使用メモリ 163,184 KB
実行使用メモリ 90,216 KB
最終ジャッジ日時 2024-06-28 10:30:50
合計ジャッジ時間 21,452 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
73,856 KB
testcase_01 AC 54 ms
73,728 KB
testcase_02 AC 107 ms
74,704 KB
testcase_03 AC 57 ms
73,860 KB
testcase_04 AC 352 ms
75,736 KB
testcase_05 AC 457 ms
75,864 KB
testcase_06 AC 344 ms
81,880 KB
testcase_07 AC 756 ms
77,792 KB
testcase_08 AC 993 ms
77,800 KB
testcase_09 AC 811 ms
77,796 KB
testcase_10 AC 1,553 ms
90,216 KB
testcase_11 AC 958 ms
73,984 KB
testcase_12 AC 401 ms
77,916 KB
testcase_13 AC 1,447 ms
77,928 KB
testcase_14 AC 1,320 ms
77,800 KB
testcase_15 AC 413 ms
75,744 KB
testcase_16 AC 383 ms
75,740 KB
testcase_17 AC 893 ms
77,796 KB
testcase_18 AC 117 ms
74,832 KB
testcase_19 AC 1,521 ms
77,800 KB
testcase_20 AC 1,666 ms
77,800 KB
testcase_21 AC 102 ms
75,752 KB
testcase_22 AC 1,503 ms
81,896 KB
testcase_23 AC 552 ms
75,748 KB
testcase_24 AC 1,272 ms
77,924 KB
testcase_25 AC 723 ms
77,928 KB
権限があれば一括ダウンロードができます

ソースコード

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;


int 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];
	
	rep(i,100)rep(j,100)rep(k,1802) done[i][j][k] = -1e9;
	
	priority_queue<NODE> Q;
	Q.push({Sx,Sy,0,V});
	done[Sy][Sx][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] != q.h ) continue;
		if( q.y == Gy && q.x == Gx ){
			ans = min(ans,(unsigned)q.c);
			continue;
		}
		rep(i,4){
			int tx = q.x + dx[i];
			int ty = q.y + dy[i];
			if( tx < 0 || ty < 0 || ty >= N || tx >= N ) continue;
			if( done[ty][tx][q.c+1] < q.h-L[ty][tx] ){
				done[ty][tx][q.c+1] = q.h-L[ty][tx];
				Q.push({tx,ty,q.c+1,q.h-L[ty][tx]});
			}
		}
	}
	cout << (int) ans << endl;
	
}
0