luogu_1002 过河卒

Posted Code_Together

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了luogu_1002 过河卒相关的知识,希望对你有一定的参考价值。

//哇塞,真的坑,要long long = =

 

#include <iostream>
using namespace std;
long long a[30][30];
int n,m,x,y,sum;
bool b[30][30];
void C(int x,int y){
  b[x][y]=b[x+1][y+2]=b[x+2][y+1]=true;
  if(x>=1)b[x-1][y+2]=true;
  if(x>=2)b[x-2][y+1]=true;
  if(y>=1)b[x+2][y-1]=true;
  if(y>=2)b[x+1][y-2]=true;
  if(y>=1 && x>=2)b[x-2][y-1]=true;
  if(y>=2 && x>=1)b[x-1][y-2]=true;
}
int main(){
  cin>>n>>m>>x>>y;
  C(x,y); a[0][0]=1;
  for(int i=0;i<=n;i++)
  for(int j=0;j<=m;j++){
  if(!b[i][j] && i>0)a[i][j]+=a[i-1][j];
  if(!b[i][j] && j>0)a[i][j]+=a[i][j-1];
  }
  cout<<a[n][m]<<endl;
  return 0;
}

以上是关于luogu_1002 过河卒的主要内容,如果未能解决你的问题,请参考以下文章

动态规划的引入 P1002 过河卒动态规划

P1002 [NOIP2002 普及组] 过河卒变种的走方格问题

洛谷P1002 过河卒

18.07.01 luoguP1002 过河卒

P1002 过河卒

AC日记——过河卒 洛谷 1002