結果

問題 No.2786 RMQ on Grid Path
ユーザー shobonvipshobonvip
提出日時 2024-06-14 21:50:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,285 ms / 6,000 ms
コード長 2,052 bytes
コンパイル時間 5,646 ms
コンパイル使用メモリ 270,788 KB
実行使用メモリ 29,292 KB
最終ジャッジ日時 2024-06-14 21:51:24
合計ジャッジ時間 32,385 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 4 ms
6,816 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 4 ms
6,940 KB
testcase_05 AC 3 ms
6,944 KB
testcase_06 AC 3 ms
6,940 KB
testcase_07 AC 4 ms
6,944 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 3 ms
6,940 KB
testcase_10 AC 4 ms
6,944 KB
testcase_11 AC 4 ms
6,940 KB
testcase_12 AC 1,239 ms
28,876 KB
testcase_13 AC 1,216 ms
28,824 KB
testcase_14 AC 1,222 ms
28,860 KB
testcase_15 AC 1,250 ms
28,868 KB
testcase_16 AC 1,285 ms
28,724 KB
testcase_17 AC 1,263 ms
28,888 KB
testcase_18 AC 1,283 ms
28,732 KB
testcase_19 AC 1,211 ms
28,928 KB
testcase_20 AC 1,226 ms
28,828 KB
testcase_21 AC 1,227 ms
28,832 KB
testcase_22 AC 1,085 ms
28,876 KB
testcase_23 AC 1,121 ms
28,696 KB
testcase_24 AC 711 ms
25,480 KB
testcase_25 AC 747 ms
25,416 KB
testcase_26 AC 737 ms
25,456 KB
testcase_27 AC 462 ms
11,512 KB
testcase_28 AC 439 ms
10,064 KB
testcase_29 AC 1,024 ms
25,972 KB
testcase_30 AC 401 ms
10,068 KB
testcase_31 AC 59 ms
6,940 KB
testcase_32 AC 752 ms
24,520 KB
testcase_33 AC 354 ms
9,900 KB
testcase_34 AC 787 ms
29,292 KB
testcase_35 AC 853 ms
29,292 KB
testcase_36 AC 744 ms
29,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

//* ATCODER
#include<atcoder/all>
using namespace atcoder;
typedef modint998244353 mint;
//*/

/* BOOST MULTIPRECISION
#include<boost/multiprecision/cpp_int.hpp>
using namespace boost::multiprecision;
//*/

typedef long long ll;

#define rep(i, s, n) for (int i = (int)(s); i < (int)(n); i++)
#define rrep(i, s, n) for (int i = (int)(n)-1; i >= (int)(s); i--)

template <typename T> bool chmin(T &a, const T &b) {
	if (a <= b) return false;
	a = b;
	return true;
}

template <typename T> bool chmax(T &a, const T &b) {
	if (a >= b) return false;
	a = b;
	return true;
}

template <typename T> T max(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmax(ret, a[i]);
	return ret;
}

template <typename T> T min(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmin(ret, a[i]);
	return ret;
}

template <typename T> T sum(vector<T> &a){
	T ret = 0;
	for (int i=0; i<(int)a.size(); i++) ret += a[i];
	return ret;
}

int main(){
	int h, w; cin >> h >> w;
	vector a(h, vector<int>(w));
	rep(i,0,h)rep(j,0,w)cin>>a[i][j];
	vector bucket(h*w+1,vector<pair<int,int>>(0));
	rep(i,0,h)rep(j,0,w)bucket[a[i][j]].push_back(pair(i,j));
	int q;cin>>q;
	vector<int> sx(q),sy(q),gx(q),gy(q);
	rep(i,0,q){
		cin>>sx[i]>>sy[i]>>gx[i]>>gy[i];
		sx[i]--;sy[i]--;gx[i]--;gy[i]--;
	}
	vector<int> ub(q,h*w),lb(q,0);
	auto check=[&]()->bool {
		rep(i,0,q){
			if(ub[i]-lb[i]>1)return true;
		}
		return false;
	};
	while(check()){
		vector buckett(h*w+1,vector<int>(0));
		rep(i,0,q){
			int t=(ub[i]+lb[i])/2;
			buckett[t].push_back(i);
		}
		dsu uf(h*w);
		rep(t,0,h*w+1){
			for(auto[i,j]:bucket[t]){
				for(auto[x,y]:{
					pair(i+1,j),pair(i-1,j),pair(i,j-1),pair(i,j+1)
				}){
					if(!(0<=x&&x<h&&0<=y&&y<w))continue;
					if(a[x][y]<=t)uf.merge(x*w+y,i*w+j);
				}
			}
			for(int i:buckett[t]){
				if(uf.same(sx[i]*w+sy[i],gx[i]*w+gy[i])){
					ub[i]=t;
				}else{
					lb[i]=t;
				}
			}
		}
	}
	rep(i,0,q){
		cout<<ub[i]<<endl;
	}
}

0