当前位置:   article > 正文

【水汐の蓝桥】振兴中华小明参加了学校的趣味运动会,其中的一个项目是:跳格子。 比赛时,先站在左上角的写着“从”字的格子里,可以横向或纵向跳相邻的格子里,但不能跳到对角的格子里。格子中写的字如_小明从左上角的第一格开始,沿横向或纵向每次跳一格

小明从左上角的第一格开始,沿横向或纵向每次跳一格
#include <stdio.h>
#include <iostream>
#include<stack>
#include<queue>
#include<cmath>
#include<stdlib.h>
#include<string.h>
#include<cstring>
#include<algorithm>
#include<cstdio>
using namespace std;
/*
小明参加了学校的趣味运动会,其中的一个项目是:跳格子。

比赛时,先站在左上角的写着“从”字的格子里,可以横向或纵向跳相邻的格子里,但不能跳到对角的格子里。格子中写的字如下(或参看p1.jpg):


从我做起振
我做起振兴
做起振兴中
起振兴中华


要求跳过的路线刚好构成“从我做起振兴中华”这句话。

请你帮助小明算一算他一共有多少种可能的跳跃路线呢?

答案是一个整数,请通过浏览器直接提交该数字。
注意:不要提交解答过程,或其它辅助说明类的内容。

	*/
int sum=0;
void fun(int x,int y)
{
	if(x==4&&y==3) {sum++; return ;}
	if(x<4&&y<3) { fun(x+1,y);fun(x,y+1);}
	if(x==4&&y<3) fun(x,y+1);
	if(x<4&&y==3) fun(x+1,y);
}
int main( )
{	
	fun(0,0);
	cout <<sum;
	return 0;
}
/*

*/
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/146408
推荐阅读
相关标签
  

闽ICP备14008679号