Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
55596 | 王籽易 | 走迷宫 | C++ | 通过 | 100 | 5 MS | 292 KB | 575 | 2022-07-30 13:11:11 |
#include <bits/stdc++.h> using namespace std; int n,a[333][333]={0},st[333][333]={0},ans=0; int dx[9]={0,0,-1,1,-1,-1,1,1,0}; int dy[9]={0,-1,0,1,-1,1,-1,0,1}; void dfs(int x,int y){ if(x==1&&y==n){ ans++; return; } for(int i=1;i<=8;i++){ int tx=x+dx[i],ty=y+dy[i]; if(a[tx][ty]==0 &&st[tx][ty]==0 && tx>=1 &&tx<=n &&ty>=1 && 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; }