题目背景
迷宫 【问题描述】 给定一个N*M方格的迷宫,迷宫里有T处障碍,障碍处不可通过。给定起点坐标和 终点坐标,问: 每个方格最多经过1次,有多少种从起点坐标到终点坐标的方案。在迷宫 中移动有上下左右四种方式,每次只能移动一个方格。数据保证起点上没有障碍。 输入样例 输出样例 【数据规模】 1≤N,M≤5
题目描述
输入输出格式
输入格式:
【输入】
第一行N、M和T,N为行,M为列,T为障碍总数。第二行起点坐标SX,SY,终点
坐标FX,FY。接下来T行,每行为障碍点的坐标。
输出格式:
【输出】
给定起点坐标和终点坐标,问每个方格最多经过1次,从起点坐标到终点坐标的方
案总数。
输入输出样例
输入样例#1:
2 2 1
1 1 2 2
1 2
输出样例#1:
1
————————————————————————————————————————————————————————
#include<iostream>
#include<cstdio>
#include<cstring>
#include<queue>
#include<cmath>
#include<algorithm>
#include<cstdlib>
using namespace std;
int n,m,t,sx,sy,fx,fy,t1,t2,tot=,change[][]={{,,},{,,},{,-,},{,,},{,,-}};
bool ditu[][]={false};
int read(){
int x=,f=;char ch=getchar();
while(ch<''||ch>''){if(ch=='-')f=-;ch=getchar();}
while(ch>=''&&ch<=''){x=x*+ch-'';ch=getchar();}
return x*f;
}
void dfs(int x,int y)
{
if (x>= && y>= && x<=m && y<=n && ditu[x][y]==false)
{
if (x==fx && y==fy)
{
tot++;
return ;
}
for (int i=;i<=;i++)
{
ditu[x][y]=true;
dfs(x+change[i][],y+change[i][]);
ditu[x][y]=false;
}
}
}
int main()
{
n=read();m=read();t=read(); sx=read(); sy=read(); fx=read(); fy=read();
for (int i=;i<=t;i++)
{
cin>>t1>>t2;
ditu[t1][t2]=true;
}
dfs(sx,sy);
cout<<tot;
return ;
}