結果

問題 No.2786 RMQ on Grid Path
ユーザー kwm_tkwm_t
提出日時 2024-06-14 22:21:06
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,015 ms / 6,000 ms
コード長 2,393 bytes
コンパイル時間 5,080 ms
コンパイル使用メモリ 316,452 KB
実行使用メモリ 33,160 KB
最終ジャッジ日時 2024-06-14 22:21:46
合計ジャッジ時間 24,513 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 4 ms
6,944 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 3 ms
6,940 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 3 ms
6,944 KB
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 3 ms
6,944 KB
testcase_11 AC 4 ms
6,944 KB
testcase_12 AC 921 ms
32,080 KB
testcase_13 AC 921 ms
31,920 KB
testcase_14 AC 1,015 ms
31,868 KB
testcase_15 AC 927 ms
31,944 KB
testcase_16 AC 814 ms
31,984 KB
testcase_17 AC 914 ms
31,996 KB
testcase_18 AC 874 ms
31,932 KB
testcase_19 AC 861 ms
31,892 KB
testcase_20 AC 879 ms
31,944 KB
testcase_21 AC 840 ms
31,840 KB
testcase_22 AC 780 ms
31,948 KB
testcase_23 AC 764 ms
31,932 KB
testcase_24 AC 495 ms
29,208 KB
testcase_25 AC 518 ms
29,324 KB
testcase_26 AC 496 ms
29,076 KB
testcase_27 AC 303 ms
12,784 KB
testcase_28 AC 346 ms
11,468 KB
testcase_29 AC 657 ms
28,392 KB
testcase_30 AC 304 ms
11,324 KB
testcase_31 AC 42 ms
6,940 KB
testcase_32 AC 475 ms
27,900 KB
testcase_33 AC 276 ms
11,364 KB
testcase_34 AC 496 ms
32,820 KB
testcase_35 AC 528 ms
32,872 KB
testcase_36 AC 507 ms
33,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
//using mint = modint1000000007;
//const int mod = 1000000007;
//using mint = modint998244353;
//const int mod = 998244353;
//const int INF = 1e9;
//const long long LINF = 1e18;
#define rep(i, n) for (int i = 0; i < (n); ++i)
#define rep2(i,l,r)for(int i=(l);i<(r);++i)
#define rrep(i, n) for (int i = (n) - 1; i >= 0; --i)
#define rrep2(i,l,r)for(int i=(r) - 1;i>=(l);--i)
#define all(x) (x).begin(),(x).end()
#define allR(x) (x).rbegin(),(x).rend()
#define P pair<int,int>
template<typename A, typename B> inline bool chmax(A & a, const B & b) { if (a < b) { a = b; return true; } return false; }
template<typename A, typename B> inline bool chmin(A & a, const B & b) { if (a > b) { a = b; return true; } return false; }

int main() {
	ios::sync_with_stdio(false);
	cin.tie(nullptr);
	int h, w; cin >> h >> w;
	vector a(h, vector<int>(w));
	rep(i, h)rep(j, w)cin >> a[i][j];
	vector<pair<int, pair<int, int>>>edge;
	vector edges(h * w + 1, vector<P>());
	rep(i, h)rep(j, w) {
		if (h - 1 != i) {
			int ni = i + 1;
			int nj = j + 0;
			int index0 = i * w + j;
			int index1 = ni * w + nj;
			int weight = max(a[i][j], a[ni][nj]);
			edges[weight].push_back({ index0,index1 });
		}
		if (w - 1 != j) {
			int ni = i + 0;
			int nj = j + 1;
			int index0 = i * w + j;
			int index1 = ni * w + nj;
			int weight = max(a[i][j], a[ni][nj]);
			edges[weight].push_back({ index0,index1 });
		}
	}
	int q; cin >> q;
	vector<int>rs(q), cs(q), rt(q), ct(q);
	rep(i, q)cin >> rs[i] >> cs[i] >> rt[i] >> ct[i];
	vector<P>query(q);
	rep(i, q) {
		rs[i]--, cs[i]--, rt[i]--, ct[i]--;
		query[i].first = rs[i] * w + cs[i];
		query[i].second = rt[i] * w + ct[i];
	}
	const int k = h * w + 1;
	std::vector<int>ok(q, k), ng(q, -1);
	while (true) {
		bool fin = true;
		std::vector<std::vector<int>>mid(k);
		for (int i = 0; i < q; ++i) {
			if (abs(ok[i] - ng[i]) > 1) {
				fin = false;
				int m = (ok[i] + ng[i]) / 2;
				mid[m].push_back(i);
			}
		}
		if (fin)break;
		dsu uf(h * w);
		for (int i = 0; i < k; ++i) {
			for (auto e : edges[i]) {
				uf.merge(e.first, e.second);
			}
			for (int j = 0; j < mid[i].size(); ++j) {
				int idx = mid[i][j];
				if (uf.same(query[idx].first,query[idx].second))ok[mid[i][j]] = i;
				else ng[mid[i][j]] = i;
			}
		}
	}
	rep(i, q)cout << ok[i] << endl;
	return 0;
}
0