Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
56138 老师 走迷宫 C++ 通过 100 5 MS 256 KB 530 2022-08-01 15:44:30

Tests(5/5):


#include<bits/stdc++.h> using namespace std; int n,mg[20][20],st[20][20],ans,dx[9]={0,0,1,1,1,-1,-1,-1},dy[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+dx[i],ty=y+dy[i]; if(mg[tx][ty]==0&&st[tx][ty]==0&&tx<=n&&tx>=1&&ty<=n&&ty>=1){ 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>>mg[i][j]; st[1][1]=1; dfs(1,1); cout<<ans; return 0; }


测评信息: