Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
175680 | C班 郑筱橦 | 机器人搬重物 | C++ | 编译错误 | 0 | 0 MS | 0 KB | 803 | 2024-08-21 10:09:29 |
#include <bits/stdc++.h> using namespace std; int n,m,desx,desy,soux,souy,totstep,a[51],b[51],map[51][51]; bool f; int move(int x, int y, int step){ map[x][y]=step; a[step]=x; b[step]=y; if((x==desx) && (y==desy)) { f=1; totstep=step; } else{ if((y!=m) && (map[x][y+1]==0)) move(x,y+1,step+1); if((!f)&&(x!=n) && (map[x+1][y]==0)) move(x+1,y,step+1); if((!f) && (y!=1) && (map[x][y-1]==0)) move(x,y-1,step+1); if((!f) && (x!=1) && (map[x-1][y])) move(x-1,y,step+1); } } int main(){ int i,j; cin >> n >> m; for (i=1;i<=n;i++) for (j=1;j<=m;j++) cin >> map[i][j]; cin >> soux >> souy; cin >> desx >> desy; f=0; move(soux,souy,1); if(f){ for (i=1; i<= totstep; i++) cout << a[i] << b[i]; } else cout << "-1" << endl; return 0; }