結果

問題 No.2786 RMQ on Grid Path
ユーザー kusaf_kusaf_
提出日時 2024-06-17 03:10:21
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,210 ms / 6,000 ms
コード長 1,555 bytes
コンパイル時間 3,719 ms
コンパイル使用メモリ 268,100 KB
実行使用メモリ 70,952 KB
最終ジャッジ日時 2024-06-17 03:10:52
合計ジャッジ時間 29,185 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 3 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 1,210 ms
70,816 KB
testcase_13 AC 1,177 ms
70,824 KB
testcase_14 AC 1,194 ms
70,824 KB
testcase_15 AC 1,205 ms
70,688 KB
testcase_16 AC 1,165 ms
70,568 KB
testcase_17 AC 1,151 ms
70,696 KB
testcase_18 AC 1,138 ms
70,696 KB
testcase_19 AC 1,111 ms
70,952 KB
testcase_20 AC 1,128 ms
70,820 KB
testcase_21 AC 1,139 ms
70,436 KB
testcase_22 AC 927 ms
68,644 KB
testcase_23 AC 954 ms
69,412 KB
testcase_24 AC 418 ms
62,564 KB
testcase_25 AC 394 ms
62,356 KB
testcase_26 AC 445 ms
62,588 KB
testcase_27 AC 230 ms
34,736 KB
testcase_28 AC 157 ms
36,136 KB
testcase_29 AC 993 ms
54,300 KB
testcase_30 AC 175 ms
34,628 KB
testcase_31 AC 32 ms
7,424 KB
testcase_32 AC 359 ms
60,440 KB
testcase_33 AC 69 ms
17,292 KB
testcase_34 AC 466 ms
65,524 KB
testcase_35 AC 437 ms
65,524 KB
testcase_36 AC 475 ms
65,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/dsu>
using namespace std;
using namespace atcoder;
using ll = long long;

constexpr int dx[4] = {1, 0, -1, 0}, dy[4] = {0, 1, 0, -1};

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

  ll H, W;
  cin >> H >> W;

  vector<vector<ll>> A(H, vector<ll>(W));
  vector<vector<pair<ll, ll>>> v(H * W);
  for(ll i = 0; i < H; i++) {
    for(ll j = 0; j < W; j++) {
      cin >> A[i][j];
      v[--A[i][j]].emplace_back(i, j);
    }
  }

  ll Q;
  cin >> Q;
  vector<tuple<ll, ll, ll, ll>> q(Q);
  for(auto &[sx, sy, tx, ty] : q) {
    cin >> sx >> sy >> tx >> ty;
    sx--, sy--, tx--, ty--;
  }

  vector<ll> L(Q, 0), R(Q, H * W);
  vector<vector<ll>> ask(H * W);
  while(true) {
    bool fin = true;
    for(ll i = 0; i < Q; i++) {
      if(R[i] - L[i] > 1) {
        fin = false;
        ask[(L[i] + R[i]) / 2].emplace_back(i);
      }
    }
    if(fin) { break; }

    dsu u(H * W);
    auto idx = [&](ll i, ll j) { return i * W + j; };

    for(ll M = 0; M < H * W; M++) {
      while(!ask[M].empty()) {
        ll i = ask[M].back();
        ask[M].pop_back();
        auto [sx, sy, tx, ty] = q[i];
        u.same(idx(sx, sy), idx(tx, ty)) ? R[i] = M : L[i] = M;
      }
      for(auto &[i, j] : v[M]) {
        for(ll k = 0; k < 4; k++) {
          ll ni = i + dx[k], nj = j + dy[k];
          if(ni < 0 || ni >= H || nj < 0 || nj >= W) { continue; }
          if(A[ni][nj] <= A[i][j]) { u.merge(idx(i, j), idx(ni, nj)); }
        }
      }
    }
  }

  for(auto &i : L) { cout << ++i << "\n"; }
}
0