結果

問題 No.2786 RMQ on Grid Path
ユーザー OnjoujiTokiOnjoujiToki
提出日時 2024-08-01 12:11:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,805 bytes
コンパイル時間 2,007 ms
コンパイル使用メモリ 178,144 KB
実行使用メモリ 13,880 KB
最終ジャッジ日時 2024-08-01 12:12:09
合計ジャッジ時間 15,704 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 1 ms
6,944 KB
testcase_02 AC 5 ms
6,940 KB
testcase_03 AC 4 ms
6,940 KB
testcase_04 AC 4 ms
6,940 KB
testcase_05 AC 6 ms
6,944 KB
testcase_06 AC 5 ms
6,940 KB
testcase_07 AC 6 ms
6,944 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 4 ms
6,940 KB
testcase_10 AC 4 ms
6,940 KB
testcase_11 AC 6 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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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 {
            dsu.clear();
            for (auto& [w, u, v] : edges) {
                if (w > less) return false;
                dsu.merge(u, v);
                if (dsu.same(convert(a, b), convert(c, d))) 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';
    }
}
0