当前位置:网站首页>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 ~!@#¥%……&*(
边栏推荐
- Spatiotemporal deformable convolution for compressed video quality enhancement (STDF)
- 什么是数据泄露
- [data mining] visual pattern mining: hog feature + cosine similarity /k-means clustering
- 【OBS】RTMPSockBuf_ Fill, remote host closed connection.
- 暑期安全很重要!应急安全教育走进幼儿园
- Protection strategy of server area based on Firewall
- Apache多个组件漏洞公开(CVE-2022-32533/CVE-2022-33980/CVE-2021-37839)
- 简述keepalived工作原理
- 2. 堆排序『较难理解的排序』
- Ctfshow, information collection: web4
猜你喜欢
MySQL bit type resolution
【OBS】RTMPSockBuf_Fill, remote host closed connection.
【目标检测】YOLOv5跑通VOC2007数据集
【OBS】RTMPSockBuf_ Fill, remote host closed connection.
智汀不用Home Assistant让小米智能家居接入HomeKit
【數據挖掘】視覺模式挖掘:Hog特征+餘弦相似度/k-means聚類
Discussion on CPU and chiplet Technology
MySQL installation configuration 2021 in Windows Environment
Unity's ASE achieves full screen sand blowing effect
Change win10 Screensaver
随机推荐
Ctfshow, information collection: web13
CTFshow,信息搜集:web4
Ctfshow, information collection: web9
上半年晋升 P8 成功,还买了别墅!
【數據挖掘】視覺模式挖掘:Hog特征+餘弦相似度/k-means聚類
Jetson AGX Orin CANFD 使用
2. 堆排序『较难理解的排序』
【兰州大学】考研初试复试资料分享
激光雷达lidar知识点滴
Used by Jetson AgX Orin canfd
Niuke real problem programming - Day11
居然从408改考自命题!211华北电力大学(北京)
Ctfshow, information collection: web12
leetcode:648. Word replacement [dictionary tree board + find the shortest matching prefix among several prefixes]
[server data recovery] data recovery case of raid failure of a Dell server
Win10 or win11 taskbar, automatically hidden and transparent
[server data recovery] a case of RAID data recovery of a brand StorageWorks server
8大模块、40个思维模型,打破思维桎梏,满足你工作不同阶段、场景的思维需求,赶紧收藏慢慢学
Niuke real problem programming - day16
A need to review all the knowledge, H5 form is blocked by the keyboard, event agent, event delegation