結果

問題 No.2786 RMQ on Grid Path
ユーザー 沙耶花沙耶花
提出日時 2024-06-14 22:07:02
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,306 ms / 6,000 ms
コード長 1,295 bytes
コンパイル時間 4,825 ms
コンパイル使用メモリ 270,880 KB
実行使用メモリ 29,256 KB
最終ジャッジ日時 2024-06-14 22:07:52
合計ジャッジ時間 30,371 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 4 ms
6,940 KB
testcase_03 AC 4 ms
6,944 KB
testcase_04 AC 4 ms
6,940 KB
testcase_05 AC 4 ms
6,944 KB
testcase_06 AC 4 ms
6,940 KB
testcase_07 AC 3 ms
6,940 KB
testcase_08 AC 4 ms
6,944 KB
testcase_09 AC 4 ms
6,940 KB
testcase_10 AC 3 ms
6,944 KB
testcase_11 AC 4 ms
6,944 KB
testcase_12 AC 1,288 ms
28,792 KB
testcase_13 AC 1,306 ms
28,768 KB
testcase_14 AC 1,255 ms
28,788 KB
testcase_15 AC 1,255 ms
28,756 KB
testcase_16 AC 1,235 ms
28,604 KB
testcase_17 AC 1,278 ms
28,864 KB
testcase_18 AC 1,241 ms
28,740 KB
testcase_19 AC 1,257 ms
28,844 KB
testcase_20 AC 1,286 ms
28,648 KB
testcase_21 AC 1,244 ms
28,652 KB
testcase_22 AC 1,166 ms
28,724 KB
testcase_23 AC 1,124 ms
28,452 KB
testcase_24 AC 762 ms
25,408 KB
testcase_25 AC 752 ms
25,560 KB
testcase_26 AC 767 ms
25,476 KB
testcase_27 AC 417 ms
11,384 KB
testcase_28 AC 414 ms
10,068 KB
testcase_29 AC 1,041 ms
25,916 KB
testcase_30 AC 390 ms
10,060 KB
testcase_31 AC 60 ms
6,944 KB
testcase_32 AC 696 ms
24,520 KB
testcase_33 AC 379 ms
9,896 KB
testcase_34 AC 741 ms
29,256 KB
testcase_35 AC 727 ms
29,248 KB
testcase_36 AC 798 ms
29,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for (int i = 0; i < (n); ++i)
#define Inf32 1000000001
#define Inf64 1000000000000000001

int main(){
	int h,w;
	cin>>h>>w;
	vector a(h,vector(w,0));
	vector<vector<pair<int,int>>> pos(h*w+1);
	rep(i,h){
		rep(j,w){
			cin>>a[i][j];
			pos[a[i][j]].push_back({i,j});
		}
	}
	
	int q;
	cin>>q;
	
	vector<int> x(q),y(q),z(q),ww(q);
	vector<int> ok(q,h*w),ng(q,0);
	rep(i,q){
		cin>>x[i]>>y[i]>>z[i]>>ww[i];
		x[i]--;y[i]--,z[i]--,ww[i]--;
	}
	vector<int> dx = {1,-1,0,0},dy = {0,0,1,-1};
	rep(_,20){
		vector<vector<int>> mids(h*w+1);
		rep(i,q){
			if(ok[i]-ng[i]>1){
				mids[(ok[i]+ng[i])/2].push_back(i);
			}
		}
		
		dsu D(h*w);
		rep(i,h*w+1){
			rep(j,pos[i].size()){
				int x = pos[i][j].first,y = pos[i][j].second;
				rep(k,4){
					int nx = x+dx[k],ny = y+dy[k];
					if(nx<0||nx>=h||ny<0||ny>=w) continue;
					if(a[nx][ny]>a[x][y]) continue;
					D.merge(x*w+y,nx*w+ny);
				}
			}
			rep(j,mids[i].size()){
				if(D.same(x[mids[i][j]]*w+y[mids[i][j]],z[mids[i][j]]*w+ww[mids[i][j]])){
					ok[mids[i][j]] = i;
				}
				else ng[mids[i][j]] = i;
				
			}
			
		}
		
	}
	rep(i,q){
		cout<<ok[i]<<endl;
	}
	
	
	return 0;
}
0