解题思路:BFS
注意事项:
参考代码:
#include<iostream> #include<queue> #include<cstring> using namespace std; const int N = 1e3 +10; int a[N][N],x1,y1,x2,y2; bool v[N][N]; struct node{ int x, y; }; int d[12][2] = {{-1,-2},{-2,-2},{-2,-1},{-2,1},{-2,2},{-1,2},{1,2},{2,2},{2,1},{2,-1},{2,-2},{1,-2}}; queue<node> q; void bfs(int x, int y){ q.push(node{x,y}); v[x][y] = true; while(!q.empty()){ node nd = q.front(); q.pop(); for(int i = 0; i < 12; i ++){ int nx = nd.x + d[i][0]; int ny = nd.y + d[i][1]; if(nx > 0 && nx <= 100 && ny > 0 && ny <= 100 && !v[nx][ny]){ v[nx][ny] = true; q.push(node{nx,ny}); if(a[nx][ny] > a[nd.x][nd.y] + 1) a[nx][ny] = a[nd.x][nd.y] + 1; } } } } int main() { memset(a,0x3f,sizeof(a)); cin >> x1 >> y1 >> x2 >> y2; a[x1][y1] = 0; bfs(x1,y1); cout << a[1][1] << endl; memset(a,0x3f,sizeof(a)); memset(v,0,sizeof(v)); a[x2][y2] = 0; bfs(x2,y2); cout << a[1][1]; return 0; }
0.0分
1 人评分
点我有惊喜!你懂得!浏览:4121 |
不容易系列2 (C语言代码)浏览:641 |
【出圈】 (C语言代码)浏览:824 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:400 |
【蟠桃记】 (C语言代码)浏览:698 |
回文数字 (C语言代码)浏览:2539 |
打印十字图 (C语言代码)浏览:2822 |
数对 (C语言代码)浏览:762 |
分糖果 (C语言代码)浏览:980 |
图形输出 (C语言代码)浏览:1019 |