結果

問題 No.2855 Move on Grid
ユーザー square1001square1001
提出日時 2024-07-15 09:01:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 102 ms / 3,000 ms
コード長 1,570 bytes
コンパイル時間 1,096 ms
コンパイル使用メモリ 91,660 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-08-25 13:03:13
合計ジャッジ時間 5,295 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 22 ms
6,812 KB
testcase_01 AC 31 ms
6,940 KB
testcase_02 AC 20 ms
6,940 KB
testcase_03 AC 15 ms
6,940 KB
testcase_04 AC 11 ms
6,944 KB
testcase_05 AC 22 ms
6,940 KB
testcase_06 AC 21 ms
6,940 KB
testcase_07 AC 4 ms
6,944 KB
testcase_08 AC 17 ms
6,940 KB
testcase_09 AC 10 ms
6,940 KB
testcase_10 AC 84 ms
6,940 KB
testcase_11 AC 82 ms
6,940 KB
testcase_12 AC 83 ms
6,944 KB
testcase_13 AC 81 ms
6,944 KB
testcase_14 AC 80 ms
6,944 KB
testcase_15 AC 83 ms
6,940 KB
testcase_16 AC 80 ms
6,940 KB
testcase_17 AC 84 ms
6,940 KB
testcase_18 AC 84 ms
6,940 KB
testcase_19 AC 81 ms
6,940 KB
testcase_20 AC 95 ms
6,940 KB
testcase_21 AC 97 ms
6,940 KB
testcase_22 AC 93 ms
6,940 KB
testcase_23 AC 96 ms
6,944 KB
testcase_24 AC 97 ms
6,944 KB
testcase_25 AC 95 ms
6,940 KB
testcase_26 AC 102 ms
6,944 KB
testcase_27 AC 99 ms
6,944 KB
testcase_28 AC 101 ms
6,940 KB
testcase_29 AC 95 ms
6,940 KB
testcase_30 AC 97 ms
6,944 KB
testcase_31 AC 96 ms
6,940 KB
testcase_32 AC 92 ms
6,940 KB
testcase_33 AC 98 ms
6,940 KB
testcase_34 AC 100 ms
6,940 KB
testcase_35 AC 94 ms
6,940 KB
testcase_36 AC 89 ms
6,944 KB
testcase_37 AC 100 ms
6,944 KB
testcase_38 AC 96 ms
6,940 KB
testcase_39 AC 92 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <deque>
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;

struct cell {
	int x, y;
};

int main() {
	// step #1. input
	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];
		}
	}

	// step #2. compression
	vector<int> cand(N * M + 1);
	for (int i = 0; i < N; i++) {
		for (int j = 0; j < M; j++) {
			cand[i * M + j] = A[i][j];
		}
	}
	cand[N * M] = 1'000'000'000;
	sort(cand.begin(), cand.end());

	// step #3. bfs
	auto bfs = [&](int b) -> int {
		const int INF = 1012345678;
		const vector<cell> dir = {cell{1, 0}, cell{0, 1}, cell{-1, 0}, cell{0, -1}};
		vector<vector<int> > d(N, vector<int>(M, INF));
		d[0][0] = (A[0][0] < b ? 1 : 0);
		deque<cell> que;
		que.push_back(cell{0, 0});
		while (!que.empty()) {
			cell c = que.front();
			que.pop_front();
			for (int i = 0; i < 4; i++) {
				cell nc = cell{c.x + dir[i].x, c.y + dir[i].y};
				if (0 <= nc.x && nc.x < N && 0 <= nc.y && nc.y < M) {
					int f = (A[nc.x][nc.y] < b ? 1 : 0);
					int nd = d[c.x][c.y] + f;
					if (d[nc.x][nc.y] > nd) {
						d[nc.x][nc.y] = nd;
						if (f == 1) {
							que.push_back(nc);
						} else {
							que.push_front(nc);
						}
					}
				}
			}
		}
		return d[N - 1][M - 1];
	};

	// step #3. binary search
	int l = 0, r = N * M + 1;
	while (r - l > 1) {
		int m = (l + r) / 2;
		int res = bfs(cand[m]);
		if (res <= K) {
			l = m;
		} else {
			r = m;
		}
	}

	// step #4. output
	cout << cand[l] << endl;

	return 0;
}
0