chenyyegg @ 2024-05-25 22:34:15
#include<bits/stdc++.h>
using namespace std;
int t[305][305],m,mov[5][2]={{0,1},{0,-1},{1,0},{-1,0},{0,0}};
bool vis[305][305];
struct place{
int x,y,s;
};
void bfs(){
queue<place>q;
q.push({0,0,0});
vis[0][0]=true;
while(!q.empty())
{
place f=q.front();
q.pop();
vis[f.x][f.y]=true;
for(int i=0;i<4;i++)
{
place v={f.x+mov[i][0],f.y+mov[i][1],f.s+1};
if((v.x>302&&v.y>=0)||(v.x>=0&&v.y>302))
{
cout<<v.s<<endl;
return;
}
else if(t[v.x][v.y]==-1)
{
cout<<v.s<<endl;
return;
}
else if(v.x>=0&&v.y>=0&&v.s<t[v.x][v.y]&&!vis[v.x][v.y])q.push(v);
}
}
cout<<-1<<endl;
}
int main(){
memset(t,-1,sizeof(t));
cin>>m;
for(int i=1,x,y,ti;i<=m;i++)
{
cin>>x>>y>>ti;
for(int j=0;j<5;j++)
{
if(t[x+mov[j][0]][y+mov[j][1]]==-1)t[x+mov[j][0]][y+mov[j][1]]=ti;
else t[x+mov[j][0]][y+mov[j][1]]=min(t[x+mov[j][0]][y+mov[j][1]],ti);
}
}
bfs();
return 0;
}
1AC(#2),1MLE(#10),12WA
悬关