結果

問題 No.2786 RMQ on Grid Path
ユーザー たたき@競プロたたき@競プロ
提出日時 2024-06-22 16:27:32
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,312 ms / 6,000 ms
コード長 1,659 bytes
コンパイル時間 6,207 ms
コンパイル使用メモリ 320,376 KB
実行使用メモリ 48,232 KB
最終ジャッジ日時 2024-06-22 16:28:11
合計ジャッジ時間 37,171 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 5 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 4 ms
6,940 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,940 KB
testcase_11 AC 5 ms
6,940 KB
testcase_12 AC 1,216 ms
47,864 KB
testcase_13 AC 1,299 ms
47,996 KB
testcase_14 AC 1,268 ms
47,856 KB
testcase_15 AC 1,239 ms
47,864 KB
testcase_16 AC 1,166 ms
47,940 KB
testcase_17 AC 1,309 ms
47,692 KB
testcase_18 AC 1,312 ms
47,800 KB
testcase_19 AC 1,177 ms
48,092 KB
testcase_20 AC 1,269 ms
48,132 KB
testcase_21 AC 1,269 ms
47,528 KB
testcase_22 AC 799 ms
48,232 KB
testcase_23 AC 814 ms
48,088 KB
testcase_24 AC 860 ms
43,536 KB
testcase_25 AC 897 ms
43,552 KB
testcase_26 AC 926 ms
43,648 KB
testcase_27 AC 741 ms
21,632 KB
testcase_28 AC 958 ms
22,400 KB
testcase_29 AC 802 ms
40,220 KB
testcase_30 AC 704 ms
21,248 KB
testcase_31 AC 46 ms
6,944 KB
testcase_32 AC 810 ms
43,376 KB
testcase_33 AC 318 ms
24,448 KB
testcase_34 AC 782 ms
46,724 KB
testcase_35 AC 839 ms
46,720 KB
testcase_36 AC 883 ms
46,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using mint=modint998244353; //1000000007;
using ll=long long;
using pp=pair<int,int>;
#define sr string 
#define vc vector
#define fi first
#define se second
#define rep(i,n) for(int i=0;i<(int)n;i++)
#define pb push_back
#define all(v) v.begin(),v.end()
#define pque priority_queue
#define bpc(a) __builtin_popcount(a)
int x[]={0,-1,0,1};
int y[]={1,0,-1,0};
int main(){
  int h,w;cin>>h>>w;
  vc v(h,vc<int>(w)); rep(i,h)rep(j,w)cin>>v[i][j];
  int q;cin>>q;
  int n=h*w;
  vc<set<int>>s(n);
  dsu d(n);
  auto f=[&](int i,int j)->int{return i*w+j;};
  auto r=[&](int a)->pp{return {a/w,a%w};};
  rep(z,q){
    int i,j,ni,nj;cin>>i>>j>>ni>>nj;
    ni--,nj--,i--,j--;
    s[f(i,j)].insert(z); 
    s[f(ni,nj)].insert(z);
  }
  vc rv(n+1,vc<int>(0));
  rep(i,h)rep(j,w)rv[v[i][j]].pb(f(i,j));
  vc<int>ans(q);
  vc bo(h,vc<bool>(w,0));
  rep(now,n+1){
     auto merge=[&](int a,int b)->void{
        a=d.leader(a);
        b=d.leader(b);
        if(a==b)return;
        if(s[a].size()>s[b].size())swap(a,b);
        for(auto au:s[a]){
          if(s[b].count(au)){
            s[b].erase(au);
            ans[au]=now;
            continue;
          }
          s[b].insert(au);
        }
        s[a].clear();
        d.merge(a,b);
        if(d.leader(a)==a)swap(s[a],s[b]);
     };
    for(auto a:rv[now]){
      auto [i,j]=r(a);
      bo[i][j]=1;
      rep(t,4){
        int ni=i+x[t],nj=j+y[t];
        if(ni<0||ni>=h||nj<0||nj>=w)continue;
        if(!bo[ni][nj])continue;
        merge(a,f(ni,nj));
      }
    }
  }
  rep(i,q)cout<<ans[i]<<"\n";
}
        
  
0