結果

問題 No.2786 RMQ on Grid Path
ユーザー ir5ir5
提出日時 2024-06-15 01:15:43
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 3,569 bytes
コンパイル時間 2,164 ms
コンパイル使用メモリ 167,356 KB
実行使用メモリ 266,988 KB
最終ジャッジ日時 2024-06-15 01:17:40
合計ジャッジ時間 115,273 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 4 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 4 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 4 ms
5,376 KB
testcase_08 AC 4 ms
5,376 KB
testcase_09 AC 4 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 4 ms
5,376 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 1,366 ms
265,252 KB
testcase_23 AC 1,316 ms
264,788 KB
testcase_24 AC 5,264 ms
265,348 KB
testcase_25 AC 5,254 ms
265,380 KB
testcase_26 AC 5,297 ms
265,568 KB
testcase_27 AC 1,494 ms
18,228 KB
testcase_28 AC 1,896 ms
9,496 KB
testcase_29 AC 4,116 ms
240,772 KB
testcase_30 AC 1,821 ms
10,136 KB
testcase_31 AC 163 ms
5,376 KB
testcase_32 TLE -
testcase_33 AC 282 ms
8,476 KB
testcase_34 AC 4,622 ms
266,988 KB
testcase_35 AC 4,619 ms
266,732 KB
testcase_36 AC 4,666 ms
266,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <cassert>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <cmath>
#include <iostream>
#include <tuple>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <ranges>
#include <iomanip>
#include <bitset>
using namespace std;
using ll = long long;

auto range(int n) { return views::iota(0, n); }

template<class T, class U> ostream& operator<<(ostream& os, const pair<T, U>& p){ return os << "{" << p.first << ", " << p.second << "}"; }
template<typename T> ostream& operator<<(ostream& os, const vector<T>& obj) { os << "{"; for (const auto& e : obj) os << e << ", "; return os << "}"; }
template<typename T> ostream& operator<<(ostream& os, const set<T>& obj) { os << "set{"; for (const auto& e : obj) os << e << ", "; return os << "}"; }
template<typename T, typename U> ostream& operator<<(ostream& os, const map<T, U>& obj) { os << "map{"; for (const auto& e : obj) os << e << ", "; return os << "}"; }

#ifdef ONLINE_JUDGE
#define dump(expr) ;
#else
#define dump(expr) { cerr << "\033[33m#L" << __LINE__ << ": " << expr << "\033[39m" << endl; }
#endif

struct UF {
  vector<int> data;
  UF(int n) : data(vector<int>(n, -1)) {}
  int root(int x) { return data[x] < 0 ? x : data[x] = root(data[x]); }
  bool find(int x, int y) { return root(x) == root(y); }
  void uni(int x, int y) {
    x = root(x);
    y = root(y);
    if (x != y) {
      if (data[x] < data[y])
        swap(x, y);
      data[x] += data[y];
      data[y] = x;
    }
  }
};

void solve() {
  int h, w; cin >> h >> w;
  vector<vector<int>> vs(h, vector<int>(w));

  auto d = [&](int i, int j) -> int { return i * w + j; };

  vector<pair<int, int>> valpos(h * w);

  for (int i : range(h))
  for (int j : range(w)) {
    cin >> vs[i][j];
    valpos[i * w + j] = {vs[i][j], d(i, j)};
  }

  vector<UF> ufs;
  vector<bitset<500 * 500>> fs;
  UF uf(h * w);
  bitset<500 * 500> filled;

  auto fillin = [&](int i, int j) {
    filled[d(i, j)] = 1;
    if (i > 0     && filled[d(i - 1, j)]) uf.uni(d(i, j), d(i - 1, j));
    if (i < h - 1 && filled[d(i + 1, j)]) uf.uni(d(i, j), d(i + 1, j));
    if (j > 0     && filled[d(i, j - 1)]) uf.uni(d(i, j), d(i, j - 1));
    if (j < w - 1 && filled[d(i, j + 1)]) uf.uni(d(i, j), d(i, j + 1));
  };

  sort(valpos.begin(), valpos.end());

  int C = 1000;
  for (int k : range(h * w)) {
    if (k % C == 0) {
      ufs.push_back(uf);
      fs.push_back(filled);
    }

    int i = valpos[k].second / w;
    int j = valpos[k].second % w;

    fillin(i, j);
  }

  struct Q {
    int idx, r1, c1, r2, c2;
  };

  int q; cin >> q;
  vector<vector<Q>> queries(ufs.size());
  for (int i : range(q)) {
    int r1, c1, r2, c2; cin >> r1 >> c1 >> r2 >> c2;
    r1--; c1--;
    r2--; c2--;

    int p = 0;
    for (; p < (int)ufs.size() && !ufs[p].find(d(r1, c1), d(r2, c2)); p++);
    p--;

    queries[p].push_back({i, r1, c1, r2, c2});
  }

  vector<int> ans(q, -1);
  for (int p : range(ufs.size())) {
    uf = ufs[p];
    filled = fs[p];

    for (int k = p * C; k < min((int)valpos.size(), p * C + C); k++) {
      int i = valpos[k].second / w;
      int j = valpos[k].second % w;

      fillin(i, j);

      for (const auto& query : queries[p]) {
        if (ans[query.idx] < 0) {
          if (uf.find(d(query.r1, query.c1), d(query.r2, query.c2))) {
            ans[query.idx] = valpos[k].first;
          }
        }
      }
    }
  }

  for (auto a : ans) cout << a << endl;
}

int main() {
  cin.tie(nullptr);
  ios::sync_with_stdio(false);
  cout << fixed << setprecision(12);
  solve();
}
0