当前位置:网站首页>There is a cow, which gives birth to a heifer at the beginning of each year. Each heifer has a heifer at the beginning of each year since the fourth year. Please program how many cows are there in the
There is a cow, which gives birth to a heifer at the beginning of each year. Each heifer has a heifer at the beginning of each year since the fourth year. Please program how many cows are there in the
2022-07-07 15:13:00 【Lele ~ll】
Input
The input data consists of multiple test cases , One line per test instance , Include an integer n(0<n<55),n The meaning of is described in the title .
n=0 Indicates the end of the input data , Don't deal with it .
Output
For each test case , The output is in the second n The number of cows in the year .
One line per output .
Sample input copy
2 4 5 0
Sample output copy
2 4 6
The code is as follows :
Two ways of thinking , Recursion and dynamic programming
1, recursive
Recursion first considers the end condition of recursion --》 Serve as n==1 When Only one cow ,,return 1
In other cases : The first n year The number of cattle is :n-1 Number of years and The number of new cows born this year
, The number of new cows born this year -- Is the number of fertile cows this year -- Namely n-3 year Number of cows per hour
So we have to discuss n--- When n<=3 When There is only one fertile cow ,
Pseudo code :
if (n == 1)
{
return 1;
}
if (n <= 3)
{
return number(n - 1) + 1;
}
else
{
return number(n - 1) + number(n - 3);
}
This code is OK, but It's easy to time out
Let's continue to consider
First year 1 head
In the second year 2 head
The third year 3 head
No new cows have been born in the past three years , And the number of cows is equal to the number of years
improvement :
if (n <= 3)
{
return n;
}
else
{
return number(n - 1) + number(n - 3);
}
The code is as follows :
#include<stdio.h>
int number(int n)
{
/*if (n == 1)
{
return 1;
}*/
if (n <= 3)
{
//return number(n - 1) + 1;
return n;
}
else
{
return number(n - 1) + number(n - 3);
}
}
int main()
{
int arr[1000]={0};
int n = 0;
int i = 0;
scanf("%d", &n);
while (n != 0)
{
arr[i] = n;
i++;
scanf("%d", &n);
}
for (i = 0; arr[i] != '\0'; i++) {
printf("%d\n", number(arr[i]));
}
return 0;
}
The second method : Dynamic programming --- It's about finding the rules
equally -- Don't go to this more abstract problem look for N The number of cattle corresponding to the year ,,, This will be more difficult ,, We introduce an array ,, Number of cattle stored every year , Horizontal law finding ,, The essential idea is the same as recursion ,
The code is as follows :
#include<stdio.h>
int main()
{
int arr[1000]={0};
int n = 0;
int i = 1;
scanf("%d", &n);
int max = n;
while (n != 0)
{
arr[i] = n;
i++;
if (n >= max)
{
max = n;
}
scanf("%d", &n);
}
int number[1000] = { 0 };// The number of cows in the corresponding year
for (i = 1; i <= max; i++)
{
if (i <= 3)
{
number[i] = i;
}
else
{
number[i] = number[i - 1] + number[i - 3];
}
}
for (i = 1; arr[i] != '\0'; i++)
{
printf("%d\n", number[arr[i]]);
}
return 0;
}Take a look at the speed of two codes ( The top one is for Dynamic programming solution

obviously ----- Dynamic programming ---- still Be quick
Try dynamic programming Fibonacci sequence ~!@#¥%……&*(
边栏推荐
- CTFshow,信息搜集:web4
- Concurrency Control & NoSQL and new database
- PAT 甲级 1103 Integer Factorizatio
- Mathematical modeling -- what is mathematical modeling
- 安恒堡垒机如何启用Radius双因素/双因子(2FA)身份认证
- Niuke real problem programming - day13
- JSON parsing instance (QT including source code)
- Deformable convolutional dense network for enhancing compressed video quality
- How to enable radius two factor / two factor (2fa) identity authentication for Anheng fortress machine
- 摘抄的只言片语
猜你喜欢

Niuke real problem programming - day18

Ctfshow, information collection: web4

什麼是數據泄露

CTFshow,信息搜集:web9

Xiaomi's path of chip self-development
![[deep learning] image hyperspectral experiment: srcnn/fsrcnn](/img/84/114fc8f0875b82cc824e6400bcb06f.png)
[deep learning] image hyperspectral experiment: srcnn/fsrcnn

Protection strategy of server area based on Firewall

Niuke real problem programming - Day11

Zhiting doesn't use home assistant to connect Xiaomi smart home to homekit

【服务器数据恢复】某品牌StorageWorks服务器raid数据恢复案例
随机推荐
How bad can a programmer be? Nima, they are all talents
[target detection] yolov5 Runtong voc2007 data set
Delete a whole page in word
Niuke real problem programming - day13
Compile advanced notes
微信小程序 01
Lidar Knowledge Drop
Niuke real problem programming - day20
上半年晋升 P8 成功,还买了别墅!
连接ftp服务器教程
[server data recovery] data recovery case of raid failure of a Dell server
【数据挖掘】视觉模式挖掘:Hog特征+余弦相似度/k-means聚类
Several ways of JS jump link
#HPDC智能基座人才发展峰会随笔
Summer safety is very important! Emergency safety education enters kindergarten
Ctfshow, information collection: Web3
Qu'est - ce qu'une violation de données
MySQL bit类型解析
What are PV and UV? pv、uv
数学建模——什么是数学建模