赞
踩
#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; } /* */
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。