結果

問題 No.2157 崖
ユーザー SSRSSSRS
提出日時 2022-12-09 21:54:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,716 ms / 6,000 ms
コード長 1,235 bytes
コンパイル時間 1,831 ms
コンパイル使用メモリ 178,840 KB
実行使用メモリ 27,648 KB
最終ジャッジ日時 2024-10-14 21:47:41
合計ジャッジ時間 17,587 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 1,333 ms
19,072 KB
testcase_14 AC 1,391 ms
25,472 KB
testcase_15 AC 1,396 ms
18,688 KB
testcase_16 AC 1,432 ms
18,944 KB
testcase_17 AC 1,159 ms
22,272 KB
testcase_18 AC 1,141 ms
21,632 KB
testcase_19 AC 1,716 ms
22,836 KB
testcase_20 AC 1,475 ms
27,648 KB
testcase_21 AC 1,496 ms
27,392 KB
testcase_22 AC 1,083 ms
20,864 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
const int INF = 1000000000;
int main(){
  int N, M;
  cin >> N >> M;
  vector<vector<int>> D(N, vector<int>(M));
  for (int i = 0; i < N; i++){
    for (int j = 0; j < M; j++){
      cin >> D[i][j];
    }
  }
  vector<pair<int, int>> P(N * M);
  for (int i = 0; i < N; i++){
    for (int j = 0; j < M; j++){
      P[i * M + j] = make_pair(D[i][j], i);
    }
  }
  sort(P.begin(), P.end());
  int tv = INF, fv = -1;
  while (tv - fv > 1){
    int mid = (tv + fv) / 2;
    vector<bool> dp(N * M, false);
    vector<int> S(N, 0);
    int p = 0;
    for (int i = 0; i < N * M; i++){
      while (P[i].first - P[p].first > mid){
        if (dp[p]){
          S[P[p].second]--;
        }
        p++;
      }
      if (P[i].second == 0){
        dp[i] = true;
      } else {
        if (S[P[i].second - 1] > 0){
          dp[i] = true;
        }
      }
      if (dp[i]){
        S[P[i].second]++;
      }
    }
    bool ok = false;
    for (int i = 0; i < N * M; i++){
      if (P[i].second == N - 1 && dp[i]){
        ok = true;
      }
    }
    if (ok){
      tv = mid;
    } else {
      fv = mid;
    }
  }
  if (tv == INF){
    cout << -1 << endl;
  } else {
    cout << tv << endl;
  }
}
0