結果

問題 No.34 砂漠の行商人
ユーザー ttkkggwwttkkggww
提出日時 2022-03-30 02:16:08
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,720 ms / 5,000 ms
コード長 947 bytes
コンパイル時間 4,704 ms
コンパイル使用メモリ 263,164 KB
実行使用メモリ 394,240 KB
最終ジャッジ日時 2024-11-09 01:24:02
合計ジャッジ時間 31,314 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
50,816 KB
testcase_01 AC 60 ms
54,784 KB
testcase_02 AC 194 ms
122,240 KB
testcase_03 AC 167 ms
114,176 KB
testcase_04 AC 569 ms
236,672 KB
testcase_05 AC 713 ms
267,904 KB
testcase_06 AC 469 ms
212,864 KB
testcase_07 AC 988 ms
318,976 KB
testcase_08 AC 1,279 ms
366,592 KB
testcase_09 AC 1,093 ms
339,200 KB
testcase_10 AC 1,720 ms
394,112 KB
testcase_11 AC 1,693 ms
393,984 KB
testcase_12 AC 586 ms
240,256 KB
testcase_13 AC 1,704 ms
394,240 KB
testcase_14 AC 1,666 ms
394,112 KB
testcase_15 AC 645 ms
252,160 KB
testcase_16 AC 610 ms
244,096 KB
testcase_17 AC 1,080 ms
335,360 KB
testcase_18 AC 214 ms
134,016 KB
testcase_19 AC 1,592 ms
394,112 KB
testcase_20 AC 1,630 ms
394,112 KB
testcase_21 AC 1,686 ms
394,112 KB
testcase_22 AC 1,494 ms
394,112 KB
testcase_23 AC 820 ms
287,872 KB
testcase_24 AC 1,587 ms
394,112 KB
testcase_25 AC 1,035 ms
327,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include<atcoder/all>
using namespace atcoder;
using ll = long long;
int n,v,sx,sy,tx,ty;
vector<vector<int>> L;

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

void solve(){
	dp[0][sx][sy] = v;
	for(int i = 0;i<10000;i++){
		for(int j = 0 ;j<n;j++){
			for(int k = 0;k<n;k++){
				for(int l = 0;l<4;l++){
					int nj = j+dx[l];
					int nk = k+dy[l];
					if(nj<0||nj>=n||nk<0||nk>=n)continue;
					dp[i+1][nj][nk] = max(dp[i+1][nj][nk],dp[i][j][k]-L[nj][nk]);
				}
			}
		}
	}
	for(int i = 0;i<10000;i++){
		if(dp[i][tx][ty]){
			cout<<i<<endl;
			return;
		}
	}
	cout<<-1<<endl;

}

signed main(){
	cin.tie(nullptr);
	ios::sync_with_stdio(false);
	cin >> n >> v >> sx >> sy >> tx >> ty;
	L = vector<vector<int>>(n,vector<int>(n));
	swap(sx,sy);
	swap(tx,ty);
	sx--;
	sy--;
	tx--;
	ty--;
	for(int i = 0 ;i< n;i++){
		for(int j = 0;j<n;j++){
			cin >> L[i][j];
		}
	}
	solve();
}
0