結果

問題 No.2786 RMQ on Grid Path
ユーザー OnjoujiTokiOnjoujiToki
提出日時 2024-08-01 13:41:45
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,131 ms / 6,000 ms
コード長 3,202 bytes
コンパイル時間 1,996 ms
コンパイル使用メモリ 182,348 KB
実行使用メモリ 32,520 KB
最終ジャッジ日時 2024-08-01 13:42:16
合計ジャッジ時間 27,659 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 4 ms
6,944 KB
testcase_03 AC 4 ms
6,940 KB
testcase_04 AC 4 ms
6,940 KB
testcase_05 AC 4 ms
6,940 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 4 ms
6,940 KB
testcase_08 AC 4 ms
6,940 KB
testcase_09 AC 3 ms
6,944 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 4 ms
6,940 KB
testcase_12 AC 1,131 ms
31,392 KB
testcase_13 AC 1,116 ms
31,320 KB
testcase_14 AC 1,118 ms
31,344 KB
testcase_15 AC 1,108 ms
31,316 KB
testcase_16 AC 1,095 ms
31,352 KB
testcase_17 AC 1,101 ms
31,408 KB
testcase_18 AC 1,112 ms
31,480 KB
testcase_19 AC 1,103 ms
31,348 KB
testcase_20 AC 1,086 ms
31,344 KB
testcase_21 AC 1,097 ms
31,256 KB
testcase_22 AC 884 ms
30,932 KB
testcase_23 AC 902 ms
30,860 KB
testcase_24 AC 812 ms
30,888 KB
testcase_25 AC 771 ms
30,928 KB
testcase_26 AC 791 ms
30,940 KB
testcase_27 AC 419 ms
10,920 KB
testcase_28 AC 411 ms
8,196 KB
testcase_29 AC 858 ms
29,004 KB
testcase_30 AC 393 ms
8,724 KB
testcase_31 AC 55 ms
6,940 KB
testcase_32 AC 872 ms
32,520 KB
testcase_33 AC 373 ms
7,564 KB
testcase_34 AC 841 ms
31,496 KB
testcase_35 AC 842 ms
31,496 KB
testcase_36 AC 811 ms
31,452 KB
権限があれば一括ダウンロードができます

ソースコード

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));
    for (int i = 0; i < n; ++i) {
        for (int j = 0; j < m; ++j) {
            std::cin >> 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;
   
    std::vector<std::pair<int, int>> query(q);

    for (int i = 0; i < q; i++) {
        int a,b,c,d;
        std::cin >> a >> b >> c >> d;
        a--, b--, c--, d--;
        query[i] = {a * m + b, c * m + d};
    }
    
    int k = (int)edges.size();
    std::vector<int> r(q, k - 1), l(q, 0);
    while(true) {
        bool flag = true;
        std::vector mid_idx(k, std::vector<int>());
        for (int i = 0; i < q; i++) {
            if (l[i] >= r[i]) continue;
            flag = false;
            int mid = (l[i] + r[i]) / 2;
            mid_idx[mid].push_back(i);
        }
        if (flag) break;
        DSU<int> dsu(k);
        for (int i = 0; i < k; i++) {
            auto [w, u, v] = edges[i];  
            dsu.merge(u, v);
            for (int idx : mid_idx[i]) {
                auto [x, y] = query[idx];
                if (dsu.same(x, y)) {
                    r[idx] = i;
                } else {
                    l[idx] = i + 1;
                }
            }
        }
    }
    for (int i = 0; i < q; i++) {
        
        std::cout << std::get<0>(edges[l[i]]) << std::endl;
    }

}
0