jim


私信TA

用户名:jim4399266

访问量:2094

签 名:

等  级
排  名 18586
经  验 738
参赛次数 0
文章发表 4
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

解题思路:

因为小牛要隔三年才能生崽,因此申请一个数组保存每年新出生的牛犊的数,等到三年后成熟,将它们加入可以生崽的队伍中。

注意事项:

设当前为第n年,每年先从    unm[(n+1)%4]中取出成熟的牛,然后今年出生的小牛放入 unm[n%4]中,每年的总数加上当年出生的小牛数。



参考代码:

#include <iostream>
#include <algorithm>
#include <vector>
#include <string>
using namespace std;

int main()
{
	
	vector<int> years;
	int n, i;
	while (cin >> n)
	{
		years.push_back(n);
	}
	for (i = 0; i < years.size(); i++) {
		long long  sum = 1;          //总共的牛
		long long mature = 1;       //可以生崽的牛
		long long  unm[4] = { 0 };  //四年间隔期


		if (years[i] == 0)
			return 0;
		if (years[i] == 1)
			cout << 1;
		for (int j = 2; j <= years[i]; j++)
		{
			mature += unm[(j + 1) % 4];   //今年可以生崽的母牛数
			unm[j % 4] = mature;         //今年出生的小牛数
			sum += mature;                //今年牛的总数
			  
		}
		cout << sum << endl;
	}
	

	return 0;

}


 

0.0分

0 人评分

  评论区

  • «
  • »