結果
問題 | No.2786 RMQ on Grid Path |
ユーザー | OnjoujiToki |
提出日時 | 2024-08-01 12:14:50 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 3,238 bytes |
コンパイル時間 | 2,324 ms |
コンパイル使用メモリ | 182,992 KB |
実行使用メモリ | 29,196 KB |
最終ジャッジ日時 | 2024-08-01 12:15:02 |
合計ジャッジ時間 | 11,269 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
29,196 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 17 ms
6,940 KB |
testcase_03 | AC | 13 ms
6,940 KB |
testcase_04 | AC | 10 ms
6,940 KB |
testcase_05 | AC | 22 ms
6,944 KB |
testcase_06 | AC | 15 ms
6,944 KB |
testcase_07 | AC | 36 ms
6,940 KB |
testcase_08 | AC | 6 ms
6,940 KB |
testcase_09 | AC | 8 ms
6,944 KB |
testcase_10 | AC | 6 ms
6,940 KB |
testcase_11 | AC | 28 ms
6,944 KB |
testcase_12 | TLE | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
ソースコード
#include <iostream> #include <string> #include <algorithm> #include <vector> #include <map> #include <set> #include <utility> #include <queue> #include <stack> #include <cstring> #include <cstdio> #include <cmath> #include <cstdlib> #include <ctime> #include <iomanip> #include <cassert> #include <memory.h> #include <functional> #include <bitset> #include <unordered_map> #include <unordered_set> #include <climits> #include <list> #include <numeric> #include <iterator> #include <sstream> #include <fstream> #include <complex> #include <valarray> #include <typeinfo> #include <functional> #include <random> #include <chrono> #include <cassert> #include <array> #include <regex> #include <tuple> template <typename T> struct DSU { std::vector<T> f, siz; DSU(int n) : f(n), siz(n, 1) { std::iota(f.begin(), f.end(), 0); } T leader(T x) { while (x != f[x]) x = f[x] = f[f[x]]; return x; } bool same(T x, T y) { return leader(x) == leader(y); } bool merge(T x, T y) { x = leader(x); y = leader(y); if (x == y) return false; siz[x] += siz[y]; f[y] = x; return true; } T size(int x) { return siz[leader(x)]; } void clear() { std::fill(siz.begin(), siz.end(), 1); std::iota(f.begin(), f.end(), 0); } }; int main() { int n,m; std::cin >> n >> m; std::vector<std::vector<int>> g(n, std::vector<int>(m)); int mx = 0; for (int i = 0; i < n; ++i) { for (int j = 0; j < m; ++j) { std::cin >> g[i][j]; mx = std::max(mx, g[i][j]); } } std::vector<std::tuple<int, int, int>> edges; auto convert = [&](int x, int y) -> int { return x * m + y; }; for (int i = 0; i < n; i++) { for (int j = 0; j < m; j++) { if (i + 1 < n) { edges.emplace_back(std::max(g[i][j], g[i + 1][j]), convert(i, j), convert(i + 1,j)); } if (j + 1 < m ) { edges.emplace_back(std::max(g[i][j], g[i][j + 1]), convert(i, j), convert(i, j + 1)); } } } std::sort(edges.begin(), edges.end()); int q; std::cin >> q; DSU<int> dsu(n * m); for (int i = 0; i < q; i++) { int a,b,c,d; std::cin >> a >> b >> c >> d; a--, b--, c--, d--; int l = 0, r = mx; auto check = [&](int less) -> bool { std::unordered_set<int> st; for (auto& [w, u, v] : edges) { if (w > less) { for (int x : st) { dsu.f[x] = x; dsu.siz[x] = 1; } return false; } dsu.merge(u, v); st.insert(u); st.insert(v); if (dsu.same(convert(a, b), convert(c, d))) { for (int x : st) { dsu.f[x] = x; dsu.siz[x] = 1; } return true; } } return false; }; while(l < r) { int mid = (l + r) / 2; if (check(mid)) r = mid; else l = mid + 1; } std::cout << l << '\n'; } }