結果

問題 No.2855 Move on Grid
ユーザー startcppstartcpp
提出日時 2024-08-25 14:44:52
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 215 ms / 3,000 ms
コード長 1,288 bytes
コンパイル時間 661 ms
コンパイル使用メモリ 79,700 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-08-25 14:45:00
合計ジャッジ時間 7,898 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
6,812 KB
testcase_01 AC 64 ms
6,944 KB
testcase_02 AC 35 ms
6,940 KB
testcase_03 AC 30 ms
6,944 KB
testcase_04 AC 22 ms
6,940 KB
testcase_05 AC 44 ms
6,944 KB
testcase_06 AC 40 ms
6,940 KB
testcase_07 AC 6 ms
6,940 KB
testcase_08 AC 37 ms
6,940 KB
testcase_09 AC 16 ms
6,944 KB
testcase_10 AC 119 ms
6,944 KB
testcase_11 AC 121 ms
6,940 KB
testcase_12 AC 119 ms
6,940 KB
testcase_13 AC 116 ms
6,944 KB
testcase_14 AC 117 ms
6,944 KB
testcase_15 AC 123 ms
6,944 KB
testcase_16 AC 117 ms
6,940 KB
testcase_17 AC 117 ms
6,944 KB
testcase_18 AC 121 ms
6,940 KB
testcase_19 AC 123 ms
6,940 KB
testcase_20 AC 197 ms
6,940 KB
testcase_21 AC 191 ms
6,948 KB
testcase_22 AC 202 ms
6,940 KB
testcase_23 AC 193 ms
6,940 KB
testcase_24 AC 191 ms
6,944 KB
testcase_25 AC 191 ms
6,944 KB
testcase_26 AC 183 ms
6,940 KB
testcase_27 AC 189 ms
6,944 KB
testcase_28 AC 198 ms
6,944 KB
testcase_29 AC 194 ms
6,940 KB
testcase_30 AC 196 ms
6,940 KB
testcase_31 AC 198 ms
6,940 KB
testcase_32 AC 199 ms
6,940 KB
testcase_33 AC 195 ms
6,940 KB
testcase_34 AC 215 ms
6,944 KB
testcase_35 AC 196 ms
6,944 KB
testcase_36 AC 163 ms
6,940 KB
testcase_37 AC 199 ms
6,944 KB
testcase_38 AC 198 ms
6,940 KB
testcase_39 AC 193 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <vector>
#include <queue>
#define rep(i, n) for(i = 0; i < n; i++)
#define int long long
using namespace std;
typedef pair<int, int> P;

int INF = 1e+9;
int dy[4] = {-1, 0, 1, 0};
int dx[4] = {0, 1, 0, -1};
int n, m, K;
int a[300][300];
int dp[300][300];

bool check(int X) {
	int i, j;
	rep(i, n) rep(j, m) dp[i][j] = INF;
	queue<P> que[2];
	que[0].push(P(0, 0));
	dp[0][0] = (a[0][0] < X);
	
	while (que[0].size() + que[1].size() > 0) {
		P now;
		if (!que[0].empty()) { now = que[0].front(); que[0].pop(); }
		else { now = que[1].front(); que[1].pop(); }
		int y = now.first;
		int x = now.second;
		rep(i, 4) {
			int ny = y + dy[i];
			int nx = x + dx[i];
			if (ny < 0 || ny >= n || nx < 0 || nx >= m) continue;
			if (a[ny][nx] < X && dp[ny][nx] > dp[y][x] + 1) {
				que[1].push(P(ny, nx));
				dp[ny][nx] = dp[y][x] + 1;
			}
			if (a[ny][nx] >= X && dp[ny][nx] > dp[y][x]) {
				que[0].push(P(ny, nx));
				dp[ny][nx] = dp[y][x];
			}
		}
	}

	return dp[n - 1][m - 1] <= K;
}

signed main() {
	int i, j;

	cin >> n >> m >> K;
	rep(i, n) rep(j, m) cin >> a[i][j];

	int ok = 0, ng = 1000000001, mid;
	while (ng - ok >= 2) {
		mid = (ok + ng) / 2;
		if (check(mid)) ok = mid;
		else ng = mid;
	}

	cout << ok << endl;
	return 0;
}
0