結果

問題 No.2855 Move on Grid
ユーザー eve__fuyukieve__fuyuki
提出日時 2024-08-25 20:07:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,161 bytes
コンパイル時間 2,358 ms
コンパイル使用メモリ 211,400 KB
実行使用メモリ 74,540 KB
最終ジャッジ日時 2024-08-25 20:08:07
合計ジャッジ時間 14,276 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,761 ms
74,540 KB
testcase_01 AC 654 ms
6,944 KB
testcase_02 AC 77 ms
6,944 KB
testcase_03 AC 690 ms
27,308 KB
testcase_04 AC 179 ms
6,940 KB
testcase_05 AC 1,639 ms
58,172 KB
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
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 <bits/stdc++.h>
using namespace std;

void fast_io() {
	ios_base::sync_with_stdio(false);
	cin.tie(nullptr);
}

int main() {
	fast_io();
	int n, m, k;
	cin >> n >> m >> k;
	vector<vector<int>> a(n, vector<int>(m));
	for (int i = 0; i < n; i++) {
		for (int j = 0; j < m; j++) {
			cin >> a[i][j];
		}
	}
	int dx[] = {1, 0, -1, 0};
	int dy[] = {0, 1, 0, -1};
	auto is_valid = [&](int x, int y) {
		return 0 <= x && x < n && 0 <= y && y < m;
	};
	int ok = 1, ng = 1e9 + 1;
	while (ok + 1 < ng) {
		int mid = (ok + ng) / 2;
		vector<vector<int>> dp(n, vector<int>(m, 1e9));
		dp[0][0] = a[0][0] < mid;
		deque<pair<int, int>> dq;
		dq.push_back({0, 0});
		while (!dq.empty()) {
			auto [x, y] = dq.front();
			dq.pop_front();
			for (int i = 0; i < 4; i++) {
				int nx = x + dx[i];
				int ny = y + dy[i];
				if (is_valid(nx, ny) &&
					dp[nx][ny] > dp[x][y] + (a[nx][ny] < mid)) {
					dp[nx][ny] = dp[x][y] + (a[nx][ny] < mid);
					if (a[nx][ny] < mid) {
						dq.push_front({nx, ny});
					} else {
						dq.push_back({nx, ny});
					}
				}
			}
		}
		if (dp[n - 1][m - 1] <= k) {
			ok = mid;
		} else {
			ng = mid;
		}
	}
	cout << ok << endl;
}
0