結果
問題 | No.2786 RMQ on Grid Path |
ユーザー | t98slider |
提出日時 | 2024-06-18 03:34:45 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 220 ms / 6,000 ms |
コード長 | 2,099 bytes |
コンパイル時間 | 2,783 ms |
コンパイル使用メモリ | 215,896 KB |
実行使用メモリ | 12,748 KB |
最終ジャッジ日時 | 2024-06-18 03:35:00 |
合計ジャッジ時間 | 12,328 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,944 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 3 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 2 ms
6,940 KB |
testcase_07 | AC | 2 ms
6,940 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 198 ms
11,416 KB |
testcase_13 | AC | 199 ms
11,416 KB |
testcase_14 | AC | 220 ms
11,668 KB |
testcase_15 | AC | 198 ms
12,748 KB |
testcase_16 | AC | 198 ms
11,408 KB |
testcase_17 | AC | 200 ms
12,312 KB |
testcase_18 | AC | 197 ms
11,924 KB |
testcase_19 | AC | 216 ms
12,548 KB |
testcase_20 | AC | 197 ms
12,444 KB |
testcase_21 | AC | 198 ms
11,412 KB |
testcase_22 | AC | 177 ms
11,924 KB |
testcase_23 | AC | 177 ms
11,280 KB |
testcase_24 | AC | 162 ms
11,668 KB |
testcase_25 | AC | 159 ms
11,668 KB |
testcase_26 | AC | 161 ms
11,540 KB |
testcase_27 | AC | 74 ms
6,944 KB |
testcase_28 | AC | 74 ms
6,940 KB |
testcase_29 | AC | 161 ms
12,084 KB |
testcase_30 | AC | 70 ms
6,940 KB |
testcase_31 | AC | 12 ms
6,940 KB |
testcase_32 | AC | 143 ms
12,056 KB |
testcase_33 | AC | 60 ms
6,940 KB |
testcase_34 | AC | 145 ms
12,308 KB |
testcase_35 | AC | 150 ms
11,796 KB |
testcase_36 | AC | 149 ms
12,304 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; template <class T> struct Kruskal_dsu { public: Kruskal_dsu() : _n(0) {} Kruskal_dsu(int n) : _n(n), parent_or_size(n, -1), dat(n, std::numeric_limits<T>::max()) {} bool merge(int u, int v, T w) { assert(0 <= u && u < _n); assert(0 <= v && v < _n); int x = leader(u), y = leader(v); if (x == y) return false; if (-parent_or_size[x] < -parent_or_size[y]) std::swap(x, y); parent_or_size[x] += parent_or_size[y]; parent_or_size[y] = x; dat[y] = w; return true; } int leader(int v) { assert(0 <= v && v < _n); while(parent_or_size[v] >= 0) v = parent_or_size[v]; return v; } T max_edge(int u, int v){ T ans = 0; while(u != v){ if (dat[u] > dat[v]) std::swap(u, v); ans = dat[u], u = parent_or_size[u]; if(u < 0) return -1; } return ans; } private: int _n; std::vector<int> parent_or_size; std::vector<T> dat; }; int main(){ ios::sync_with_stdio(false); cin.tie(0); int h, w, Q; cin >> h >> w; Kruskal_dsu<int> uf(h * w); vector<int> pre(w), cur(w); vector<tuple<int,int,int>> edge; edge.reserve((1 << 18) - 1); auto f = [&](int y, int x) {return y * w + x;}; for(int x = 0; x < w; x++){ cin >> pre[x]; if(x) edge.emplace_back(max(pre[x], pre[x - 1]), x - 1, x); } for(int y = 1; y < h; y++){ for(int x = 0; x < w; x++){ cin >> cur[x]; edge.emplace_back(max(cur[x], pre[x]), (y - 1) * w + x, y * w + x); if(x) edge.emplace_back(max(cur[x], cur[x - 1]), y * w + x - 1, y * w + x); } swap(pre, cur); } sort(edge.begin(), edge.end()); for(auto &&[w, u, v] : edge) uf.merge(u, v, w); cin >> Q; while(Q--){ int sy, sx, ty, tx; cin >> sy >> sx >> ty >> tx; sy--, sx--, ty--, tx--; cout << uf.max_edge(sy * w + sx, ty * w + tx) << '\n'; } }