Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
55700 | 姜李烨 | 走迷宫 | C++ | 通过 | 100 | 4 MS | 244 KB | 545 | 2022-07-30 20:09:11 |
#include<bits/stdc++.h> using namespace std; int n,ans; int a[11][11],st[11][11]={0},xm[9]={0,0,1,1,1,-1,-1,-1},ym[9]={1,-1,0,1,-1,0,1,-1}; void dfs(int x,int y){ if(x==1&&y==n){ ans++; return; } for(int i=0;i<=8;i++){ int tx=x+xm[i],ty=y+ym[i]; if(a[tx][ty]==0&&st[tx][ty]==0&&tx>0&&ty>0&&tx<=n&&ty<=n){ st[tx][ty]=1; dfs(tx,ty); st[tx][ty]=0; } } } int main(){ cin>>n; for(int i=1;i<=n;i++){ for(int j=1;j<=n;j++){ cin>>a[i][j]; } } st[1][1]=1; dfs(1,1); cout<<ans; return 0; }