1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
| #include<bits/stdc++.h> using namespace std;
const int dr[4]{1,0,-1,0},dc[4]{0,-1,0,1}; struct step{ int r,c,ct; };
int main(){ ios::sync_with_stdio(0);cin.tie(0);
int n; while(cin>>n && n!=0){ vector<string> m; for(int i=0;i<n;i++){ string l; cin>>l; m.push_back(l); }
step start; for(int i=0;i<n;i++){ for(int j=0;j<m[i].size();j++){ if(m[i][j]=='K'){ m[i][j]='#'; start.r=i; start.c=j; start.ct=0; break; } } }
queue<step> bfs; bfs.push(start); bool isfind=false; int ans=1000000000;
while(!bfs.empty()){ step sNow=bfs.front(); bfs.pop(); for(int i=0;i<4;i++){ step sNext={sNow.r+dr[i],sNow.c+dc[i],sNow.ct+1}; if(m[sNext.r][sNext.c]=='.'){ m[sNext.r][sNext.c]='#'; bfs.push(sNext); }else if(m[sNext.r][sNext.c]=='@'){ isfind=true; m[sNext.r][sNext.c]='#'; ans=min(sNext.ct,ans); } } }
if(isfind){ cout<<ans<<"\n"; }else{ cout<<"= =\n"; } } return 0; }
|