結果

問題 No.2897 2集合間距離
ユーザー Nzt3Nzt3
提出日時 2024-09-20 22:20:30
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 161 ms / 3,500 ms
コード長 984 bytes
コンパイル時間 2,561 ms
コンパイル使用メモリ 209,820 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-09-20 22:20:50
合計ジャッジ時間 5,218 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 24
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using ll=long long;
constexpr int MOD=998244353;
#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define rep2(i,l,r) for(int i=(l);i<(int)(r);i++)
#define all(v) v.begin(),v.end()

constexpr int MAX_X=1000;

int main(){
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int N;
  cin>>N;
  vector dist(MAX_X,vector(MAX_X,(int)1e9));
  queue<array<int,2>>bfs;
  rep(i,N){
    int X,Y;
    cin>>X>>Y;
    dist[X][Y]=0;
    bfs.push({X,Y});
  }
  int dx[]={0,1,0,-1};
  int dy[]={-1,0,1,0};
  auto bound_ok=[&](int x,int y){
    return x>=0&&x<MAX_X&&y>=0&&y<MAX_X;
  };
  while(bfs.size()){
    auto [x,y]=bfs.front();
    bfs.pop();
    rep(i,4){
      int x2=x+dx[i],y2=y+dy[i];
      if(bound_ok(x2,y2)&&dist[x2][y2]>dist[x][y]+1){
        dist[x2][y2]=dist[x][y]+1;
        bfs.push({x2,y2});
      }
    }
  }
  int ans=1e9;
  int M;
  cin>>M;
  rep(i,M){
    int X,Y;
    cin>>X>>Y;
    ans=min(ans,dist[X][Y]);
  }
  cout<<ans<<'\n';
}
0