- 论坛徽章:
- 0
|
母牛数量算法
性能最好,最容易理解的解决方法上场了!!
#define AGE_1 0 //一岁的牛
#define AGE_2 1 //二岁的牛
#define AGE_3 2 //三岁的牛
#define AGE_4 3 //大于或者等于四岁的牛,可以生牛的牛;
int main(void)
{
int cow[4];
int years = 0;
//初始化,只有一头一岁的母牛;
cow[AGE_1] = 1;
cow[AGE_2] = 1;
cow[AGE_3] = 1;
cow[AGE_4] = 1;
printf("input Years? " ;
scanf("%d", years);
for (int i=1; i<=years; i++)
{
//三岁的猪都长了一岁,所以放到四岁的数组中来;
cow[AGE_4] += cow[AGE_3];
//2岁的猪也长了一岁,放到三岁的数组中来;
cow[AGE_3] = cow[AGE_2];
//1岁的猪也长了一岁,放到二岁的数组中来;
cow[AGE_2] = cow[AGE_3];
//1岁的猪是由今年四岁的和大于四岁的猪生的;
cow[AGE_1] = cow[AGE_4];
}
printf("all cow is : %d", cow[0] + cow[1] + cow[2] + cow[3]);
}
不好意思,一直以为是猪,应该是牛,呵呵。。。
其他的几种不大让我满意的解决方法:
solution1:
#include <stdio.h>;
#include <stdlib.h>;
int total_n(int year)
{
if (year <= 3) return 1;
if (year == 4) return 2;
return total_n(year-1)+total_n(year-3);
}
int main(void)
{
printf("50 years go by, total pigs: %d\n", total_n(50));
return 1;
}
solution2:
#include <iostream.h>;
struct pig
{
int age;
// int mother;
int children;
};
int count_pigs(int year)
{
int i, j, k, m;
int count, count_tmp;
pig pigs[102400000];
//init;
i=j=k=m=0;
count=count_tmp=1;
for (i=0; i<10240; i++)
{
pigs.age=0;
// pigs.mother=0;
pigs.children=0;
}
//years go by...;
for(i=1; i<=year; i++)
{
cout << "现在是第" << i << "年:" << endl;
for (j=0; j<count_tmp; j++)
{
pigs[j].age++;
// cout << " 第" << j << "头猪的年龄是:" << pigs[j].age << endl;
// cout << " 她共生了" << pigs[j].children << "头小猪" << endl;
if (pigs[j].age >;= 4)
{
pigs[j].children++;
pigs[count++].age=1;
// pigs[count-1].mother=j;
pigs[count-1].children=0;
// cout <<" 她今年生了一头小猪" << count -1 << endl;
}
}
count_tmp=count;
cout << "\t" << "第" << i << "年猪的总数: " << count << endl;
}
cout << "total pigs: " << count << endl;
return count;
}
int main(void)
{
int years=0;
//get year;
cout << "input years: ";
cin >;>; years;
count_pigs(years);
}
solution3:
#include <stdio.h>;
#define n 70
struct year{
int yearnum;
long pignum;
};
struct year yearslot[n];
int main(){
yearslot[0].yearnum=1;
yearslot[0].pignum=1;
for(int i=1;i<n;i++)
{
long num=0;
for(int j=0;j<=i-3;j++)
{
num+=yearslot[j].pignum;
}
printf("year %d's pig num = %ul\n",i+1,num);
yearslot.pignum=num;
yearslot.yearnum=1;
for(int j=0;j<i;j++)
yearslot[j].yearnum++;
}
long num=0;
for(int i=0;i<n;i++)
num+=yearslot.pignum;
printf("all pig is:%ul\n",num);
} |
|