信息学奥赛一本通(1257:Knight Moves)
生活随笔
收集整理的這篇文章主要介紹了
信息学奥赛一本通(1257:Knight Moves)
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
1257:Knight Moves
時間限制: 1000 ms ??? ??? 內存限制: 65536 KB
提交數: 6149 ??? 通過數: 3100
【題目描述】
輸入nn代表有個n×n的棋盤,輸入開始位置的坐標和結束位置的坐標,問一個騎士朝棋盤的八個方向走馬字步,從開始坐標到結束坐標可以經過多少步。
【輸入】
首先輸入一個nn,表示測試樣例的個數。
每個測試樣例有三行。
第一行是棋盤的大小L(4≤L≤300);
第二行和第三行分別表示馬的起始位置和目標位置(0..L?1)。
【輸出】
馬移動的最小步數,起始位置和目標位置相同時輸出00。
【輸入樣例】
3 8 0 0 7 0 100 0 0 30 50 10 1 1 1 1【輸出樣例】
5 28 0?【分析】
? ? ? ? 馬走日,8個方向,方向數組(1,2),(1,-2),(-1,2),(-1,-2),(2,1),(2,-1),(-2,1),(-2,-1)。
【參考代碼】
#include<iostream> #include<queue> #include<cstring>using namespace std;const int N=310;struct node {int x,y;int t; };int sx,sy; //起點坐標 int ex,ey; //終點坐標 int l; //棋盤大小 int dx[]={1,1,-1,-1,2,2,-2,-2}; //方向數組 int dy[]={2,-2,2,-2,1,-1,1,-1};bool vis[N][N]; //訪問數組 void bfs() {queue <node> q; //申請隊列 node st;st.x=sx;st.y=sy;st.t=0;q.push(st); //起點入隊 while(!q.empty()){node nt=q.front();if(nt.x==ex && nt.y==ey){cout<<nt.t<<endl;break;}for(int i=0;i<8;i++){int nx=nt.x+dx[i];int ny=nt.y+dy[i];if(vis[nx][ny]==false && nx>=0 && nx<l && ny>=0 && ny<l){vis[nx][ny]=true;node tmp;tmp.x=nx;tmp.y=ny;tmp.t=nt.t+1;q.push(tmp);}}q.pop();}return; } int main() {int t;cin>>t;while(t--){memset(vis,false,sizeof(vis));cin>>l;cin>>sx>>sy>>ex>>ey;vis[sx][sy]=true;bfs();} }http://ybt.ssoier.cn:8088/problem_show.php?pid=1257
總結
以上是生活随笔為你收集整理的信息学奥赛一本通(1257:Knight Moves)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 信息学奥赛一本通 1096:数字统计 |
- 下一篇: 信息学奥赛一本通(2026:【例4.12