結果

問題 No.2786 RMQ on Grid Path
ユーザー InTheBloomInTheBloom
提出日時 2024-06-14 23:47:26
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 652 ms / 6,000 ms
コード長 2,978 bytes
コンパイル時間 2,057 ms
コンパイル使用メモリ 126,832 KB
実行使用メモリ 63,528 KB
最終ジャッジ日時 2024-06-14 23:47:48
合計ジャッジ時間 17,935 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 3 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 631 ms
63,452 KB
testcase_13 AC 630 ms
62,008 KB
testcase_14 AC 608 ms
62,984 KB
testcase_15 AC 635 ms
62,724 KB
testcase_16 AC 601 ms
63,336 KB
testcase_17 AC 632 ms
63,528 KB
testcase_18 AC 618 ms
62,440 KB
testcase_19 AC 649 ms
63,000 KB
testcase_20 AC 619 ms
61,800 KB
testcase_21 AC 652 ms
63,020 KB
testcase_22 AC 443 ms
56,672 KB
testcase_23 AC 473 ms
60,932 KB
testcase_24 AC 482 ms
52,188 KB
testcase_25 AC 503 ms
52,036 KB
testcase_26 AC 465 ms
52,164 KB
testcase_27 AC 239 ms
38,116 KB
testcase_28 AC 232 ms
41,012 KB
testcase_29 AC 472 ms
51,172 KB
testcase_30 AC 218 ms
38,904 KB
testcase_31 AC 33 ms
7,708 KB
testcase_32 AC 482 ms
42,752 KB
testcase_33 AC 158 ms
20,176 KB
testcase_34 AC 455 ms
45,048 KB
testcase_35 AC 483 ms
44,904 KB
testcase_36 AC 464 ms
44,900 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <tuple>
#include <atcoder/dsu>

using namespace std;
using namespace atcoder;
using ll = long long;

constexpr int iINF = 1'000'000'000;
constexpr ll llINF = 1'000'000'000'000'000'000;

int main () {
    int H, W; cin >> H >> W;
    vector<vector<int>> A(H, vector<int>(W));
    for (int i = 0; i < H; i++) {
        for (int j = 0; j < W; j++) {
            cin >> A[i][j];
        }
    }

    auto conv = [&](int i, int j) {
        return W * i + j;
    };

    vector<vector<pair<int, int>>> inv(H * W + 1);
    for (int i = 0; i < H; i++) for (int j = 0; j < W; j++) inv[A[i][j]].push_back(make_pair(i, j));

    // クエリにオフラインで答えることを考える。小さいコストからマージしていく過程で解がわかればそこで確定させる。
    // 更新される可能性があるのはmergeされた連結成分に属するものだけだから、クエリのマージテクみたいなものをするといい感じに解ける気がする。

    int Q; cin >> Q;
    vector<vector<tuple<int, int, int, int, int>>> query(H * W + 1);
    for (int i = 0; i < Q; i++) {
        int rs, cs, rt, ct; cin >> rs >> cs >> rt >> ct;
        rs--, cs--, rt--, ct--;
        query[conv(rs, cs)].push_back(make_tuple(i, rs, cs, rt, ct));
        query[conv(rt, ct)].push_back(make_tuple(i, rs, cs, rt, ct));
    }

    dsu d(H * W);
    const vector<vector<int>> dxy({
        vector<int>({0, 1}),
        vector<int>({1, 0}),
        vector<int>({0, -1}),
        vector<int>({-1, 0}),
    });
    auto is_in = [&](int i, int j) {
        return 0 <= i && i < H && 0 <= j && j < W;
    };

    vector<int> ans(Q, -1);

    for (int v = 1; v <= H * W; v++) {
        // 接続
        for (auto pos: inv[v]) {
            for (auto di: dxy) {
                if (!is_in(pos.first + di[0], pos.second + di[1])) continue;
                if (A[pos.first + di[0]][pos.second + di[1]] <= v) {
                    if (d.same(conv(pos.first, pos.second), conv(pos.first + di[0], pos.second + di[1]))) continue;

                    // クエリ回答チャンス
                    int U = d.leader(conv(pos.first, pos.second)), V = d.leader(conv(pos.first + di[0], pos.second + di[1]));
                    d.merge(conv(pos.first, pos.second), conv(pos.first + di[0], pos.second + di[1]));

                    if (U == d.leader(conv(pos.first, pos.second))) swap(U, V);

                    for (auto q: query[U]) {
                        if (ans[get<0>(q)] != -1) continue;
                        if (d.same(conv(get<1>(q), get<2>(q)), conv(get<3>(q), get<4>(q)))) {
                            ans[get<0>(q)] = v;
                        }
                    }

                    // クエリのマージ
                    for (auto q: query[U]) query[V].push_back(q);
                }
            }
        }
    }

    for (int i = 0; i < Q; i++) {
        cout << ans[i] << "\n";
    }
}
0