标签:ons return 感染 namespace set can math 开始 inline
#include <bits/stdc++.h>
using namespace std;
const int N = 510;
int n,m,a,b;
typedef pair<int,int> PII;
int ans[N][N];
int dx[4]={0,0,-1,1},dy[4]={1,-1,0,0};
queue<PII> q;
vector<PII> v;
void bfs()
{
while(!q.empty())
{
auto t = q.front();
q.pop();
for (int i = 0 ; i < 4 ; i ++ )
{
int x = t.first+dx[i],y = t.second+dy[i];
if(x >= 1 && x <= n && y >= 1 && y <= m && ans[x][y] == -1)
{
ans[x][y] = ans[t.first][t.second]+1;
q.push({x,y});
}
}
}
}
int main()
{
memset(ans,-1,sizeof ans);
scanf("%d%d%d%d",&n,&m,&a,&b);
while (a -- )
{
int x,y;
scanf("%d%d",&x,&y);
q.push({x,y});
ans[x][y] = 0;
}
while (b -- )
{
int x,y;
scanf("%d%d",&x,&y);
v.push_back({x,y});
}
bfs();
for (auto t : v)
{
printf("%d\n",ans[t.first][t.second]);
}
return 0;
}
标签:ons return 感染 namespace set can math 开始 inline
原文地址:https://www.cnblogs.com/QFNU-ACM/p/12868327.html