結果
問題 | No.2855 Move on Grid |
ユーザー | hatsuka_iwa |
提出日時 | 2024-09-02 04:31:46 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,011 bytes |
コンパイル時間 | 2,532 ms |
コンパイル使用メモリ | 212,548 KB |
実行使用メモリ | 17,216 KB |
最終ジャッジ日時 | 2024-09-02 04:31:58 |
合計ジャッジ時間 | 11,685 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
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 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int main() { int N, M, K, ok = 0, ng = 1e9 + 1; cin >> N >> M >> K; vector<int> dx = {0, 1, 0, -1}, dy = {-1, 0, 1, 0}; vector A(N, vector<int>(M)); vector seen(N, vector<bool>(M)); for (int i = 0; i < N; i++) for (int j = 0; j < M; j++) cin >> A.at(i).at(j); while (ng - ok > 1) { int mid = (ng + ok) / 2; auto DFS = [&](auto DFS, int Y, int X, int Count) -> bool { if (A.at(Y).at(X) < mid) Count++; if (Count > K) return false; if (Y == N - 1 && X == M - 1) return true; seen.at(Y).at(X) = true; bool ret; for (int i = 0; i < 4; i++) { int NY = Y + dy.at(i), NX = X + dx.at(i); if (NY == N || NY < 0 || NX == M || NX < 0 || seen.at(NY).at(NX)) continue; ret = DFS(DFS, NY, NX, Count); if (ret) return true; seen.at(NY).at(NX) = false; } return ret; }; if (DFS(DFS, 0, 0, 0)) ok = mid; else ng = mid; } cout << ok << endl; }