結果

問題 No.2855 Move on Grid
ユーザー saisai
提出日時 2024-08-25 14:38:22
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,177 bytes
コンパイル時間 3,605 ms
コンパイル使用メモリ 264,084 KB
実行使用メモリ 39,808 KB
最終ジャッジ日時 2024-08-25 14:38:29
合計ジャッジ時間 6,401 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 12 ms
6,940 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 12 ms
6,940 KB
testcase_11 AC 12 ms
6,944 KB
testcase_12 AC 12 ms
6,940 KB
testcase_13 AC 12 ms
6,944 KB
testcase_14 AC 12 ms
6,944 KB
testcase_15 AC 12 ms
6,944 KB
testcase_16 AC 12 ms
6,944 KB
testcase_17 AC 13 ms
6,940 KB
testcase_18 AC 12 ms
6,944 KB
testcase_19 AC 12 ms
6,944 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 45 ms
9,472 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

void solve() {
  int d[] = {1, 0, -1, 0, 1};
  int N, M, K; std::cin >> N >> M >> K;
  std::vector A(N, std::vector<int>(M));
  for (int i = 0; i < N; i++) for (int j = 0; j < M; j++) std::cin >> A[i][j];
  if (N+M-1 <= K) {
    std::cout << (int)1e9 << std::endl;
    return;
  }
  std::vector pq(N, std::vector<std::priority_queue<int>>(M));
  std::vector vis(N, std::vector<bool>(M, false));
  pq[0][0].push(A[0][0]);
  vis[0][0] = true;
  for (int x = 0; x < N; x++) for (int y = 0; y < M; y++) {
    for (int i = 0; i < 4; i++) {
      int nx = x+d[i], ny = y+d[i+1];
      if (nx < 0 || nx >= N || ny < 0 || ny >= M) continue;
      std::priority_queue<int> q = pq[x][y];
      q.push(A[nx][ny]);
      while ((int)q.size() > K+1) q.pop();
      if (vis[nx][ny]) {
        int pre = pq[nx][ny].top(), tmp = q.top();
        if (pre < tmp) pq[nx][ny] = q;
      }
      else pq[nx][ny] = q;
      vis[nx][ny] = true;
    }
  }
  std::cout << pq[N-1][M-1].top() << std::endl;
}

int main() {
  std::ios::sync_with_stdio(false);
	std::cin.tie(nullptr);

  int testcases = 1;
  //std::cin >> testcases;
  for (;testcases--;) solve();

  return 0;
}
0