結果

問題 No.2855 Move on Grid
ユーザー 沙耶花沙耶花
提出日時 2024-08-25 13:44:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 1,359 bytes
コンパイル時間 4,659 ms
コンパイル使用メモリ 273,400 KB
実行使用メモリ 821,544 KB
最終ジャッジ日時 2024-08-25 13:44:19
合計ジャッジ時間 13,782 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 349 ms
23,856 KB
testcase_01 AC 179 ms
15,468 KB
testcase_02 AC 20 ms
6,944 KB
testcase_03 AC 158 ms
13,560 KB
testcase_04 AC 96 ms
10,016 KB
testcase_05 AC 356 ms
22,824 KB
testcase_06 AC 2,476 ms
84,260 KB
testcase_07 AC 52 ms
6,940 KB
testcase_08 AC 101 ms
9,216 KB
testcase_09 AC 1,055 ms
44,360 KB
testcase_10 MLE -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 1000000000000000001

int main(){
	
	int n,m,k;
	cin>>n>>m>>k;
	k = min(k, n+m);
	vector a(n,vector<long long>(m));
	rep(i,n)rep(j,m)cin>>a[i][j];
	vector d(n,vector(m,vector<long long>(k+1,-Inf64)));
	using P = pair<long long,pair<pair<int,int>,int>>;
	priority_queue<P> q;
	d[0][0][0] = a[0][0];
	q.push({a[0][0],{{0,0},0}});
	if(k>0){
		d[0][0][1] = 1000000000;
		q.push({1000000000,{{0,0},1}});
	}
	vector<int> dx = {1,-1,0,0},dy = {0,0,1,-1};
	while(!q.empty()){
		long long D = q.top().first;
		int x = q.top().second.first.first;
		int y = q.top().second.first.second;
		int z = q.top().second.second;
		
		q.pop();
		if(D>d[x][y][z])continue;
		rep(i,4){
			int nx = x+dx[i],ny = y+dy[i];
			if(nx<0||nx>=n||ny<0||ny>=m)continue;
			{
				long long nD = min(D, a[nx][ny]);
				if(nD>d[nx][ny][z]){
					d[nx][ny][z] = nD;
					q.push({nD,{{nx,ny},z}});
				}
			}
			if(z<k){
				long long nD = min(D , 1000000000LL);
				if(nD>d[nx][ny][z+1]){
					d[nx][ny][z+1] = nD;
					q.push({nD,{{nx,ny},z+1}});
				}
			}
		}
	}
	long long ans = -Inf64;
	rep(i,k+1)ans = max(ans,d[n-1][m-1][i]);
	cout<<ans<<endl;
    return 0;
}
0