結果

問題 No.2855 Move on Grid
ユーザー ku_senjanku_senjan
提出日時 2024-08-25 14:05:35
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 607 ms / 3,000 ms
コード長 1,242 bytes
コンパイル時間 4,689 ms
コンパイル使用メモリ 293,068 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-25 14:05:56
合計ジャッジ時間 20,481 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
6,816 KB
testcase_01 AC 164 ms
6,944 KB
testcase_02 AC 105 ms
6,944 KB
testcase_03 AC 67 ms
6,944 KB
testcase_04 AC 47 ms
6,944 KB
testcase_05 AC 103 ms
6,940 KB
testcase_06 AC 85 ms
6,944 KB
testcase_07 AC 10 ms
6,944 KB
testcase_08 AC 91 ms
6,940 KB
testcase_09 AC 32 ms
6,940 KB
testcase_10 AC 265 ms
6,940 KB
testcase_11 AC 266 ms
6,940 KB
testcase_12 AC 265 ms
6,944 KB
testcase_13 AC 265 ms
6,940 KB
testcase_14 AC 267 ms
6,940 KB
testcase_15 AC 267 ms
6,944 KB
testcase_16 AC 266 ms
6,944 KB
testcase_17 AC 266 ms
6,944 KB
testcase_18 AC 266 ms
6,940 KB
testcase_19 AC 268 ms
6,940 KB
testcase_20 AC 485 ms
6,944 KB
testcase_21 AC 545 ms
6,940 KB
testcase_22 AC 487 ms
6,944 KB
testcase_23 AC 469 ms
6,944 KB
testcase_24 AC 497 ms
6,944 KB
testcase_25 AC 576 ms
6,940 KB
testcase_26 AC 471 ms
6,944 KB
testcase_27 AC 526 ms
6,940 KB
testcase_28 AC 486 ms
6,940 KB
testcase_29 AC 491 ms
6,940 KB
testcase_30 AC 567 ms
6,944 KB
testcase_31 AC 598 ms
6,940 KB
testcase_32 AC 590 ms
6,944 KB
testcase_33 AC 598 ms
6,944 KB
testcase_34 AC 601 ms
6,940 KB
testcase_35 AC 595 ms
6,940 KB
testcase_36 AC 533 ms
6,940 KB
testcase_37 AC 607 ms
6,944 KB
testcase_38 AC 596 ms
6,940 KB
testcase_39 AC 566 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

template<class T>
using min_priority_queue = priority_queue<T,vector<T>,greater<T>>;

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

int main(){
	int N, M, K;
	cin >> N >> M >> K;
	vector A(N, vector<ll>(M));
	for(int i=0; i<N; i++){
		for(int j=0; j<M; j++){
			cin >> A[i][j];
		}
	}

	auto check = [&](ll m) -> bool{
		vector cost(N, vector<int>(M));
		for(int i=0; i<N; i++){
			for(int j=0; j<M; j++){
				if(A[i][j]<m) cost[i][j] = 1;
			}
		}

		vector dist(N, vector<int>(M, 1<<30));
		min_priority_queue<tuple<int,int,int>> que;
		dist[0][0] = cost[0][0];
		que.emplace(dist[0][0], 0, 0);

		while(!que.empty()){
			auto [d, y, x] = que.top();
			que.pop();
			if(dist[y][x]<d) continue;

			for(int i=0; i<4; i++){
				int ny = y + dy[i];
				int nx = x + dx[i];
				if(clamp(0,ny,N-1)!=ny || clamp(nx,0,M-1)!=nx) continue;

				int nd = d + cost[ny][nx];
				if(nd<dist[ny][nx]){
					dist[ny][nx] = nd;
					que.emplace(nd, ny, nx);
				}
			}
		}

		return dist[N-1][M-1]<=K;
	};

	ll ok = 0, ng = 1e9 + 1;
	while(1<abs(ok-ng)){
		ll mid = (ok+ng)/2;
		if(check(mid)) ok = mid;
		else ng = mid;
	}

	cout << ok << endl;

	return 0;
}
0