zoukankan      html  css  js  c++  java
  • UVA 11000- Bee 递推

    In Africa there is a very special species of bee. Every year, the female bees of such species give birth
    to one male bee, while the male bees give birth to one male bee and one female bee, and then they die!
    Now scientists have accidentally found one “magical female bee” of such special species to the effect
    that she is immortal, but still able to give birth once a year as all the other female bees. The scientists
    would like to know how many bees there will be after N years. Please write a program that helps them
    find the number of male bees and the total number of all bees after N years.
    Input
    Each line of input contains an integer N (≥ 0). Input ends with a case where N = −1. (This case
    should NOT be processed.)
    Output
    Each line of output should have two numbers, the first one being the number of male bees after N
    years, and the second one being the total number of bees after N years. (The two numbers will not
    exceed 232.)
    Sample Input
    1
    3
    -1
    Sample Output
    1 2
    4 7

    题意: 蜜蜂,每年每只雄蜂产下一只雌蜂和一只雄蜂,每只雌蜂产下一只雄蜂,然后就死去, 现在发现了一只不会死的雌蜂,问以她为起始点,第N年有多少雄蜂和一共多少蜜蜂。

    题解:    设第i年的雄蜂和雌蜂分别为a(i)与s(i),则有如下递推关系:

                1 s(i)= a(i-1)+ 1

                2 a(i)= s(i-1)+ a(i-1)

                整理得:a(i)=a(i-1)+ a(i-2)+ 1;

    #include <iostream>
    #include <cstdio>
    #include <cmath>
    #include <cstring>
    #include <algorithm>
    #include <queue>
    #include<vector>
    #include <map>
    using namespace std ;
    typedef long long ll;
    
    const int N=100+10;
    const int maxn = 1e9 + 1;
    
    ll a[N];
    void init() {
        a[1] = 1;
        a[0] = 0;
        for(int i=2;i<=N;i++) a[i] = a[i-1] + a[i-2] +1ll;
    }
    int main() {
        init();
        int n;
        while(~scanf("%d",&n)) {
            if(n == -1) break;
            printf("%lld %lld
    ", a[n] , a[n+1]);
        }
        return 0;
    }
    代码
  • 相关阅读:
    数据同步
    闭包的内存泄漏解决办法
    No module named 'MySQLdb'
    pqi 更换pip 国内源
    BZOJ 1934 [Shoi2007]Vote 善意的投票
    BZOJ 2038 [2009国家集训队]小Z的袜子(hose)
    BZOJ 1002 [FJOI2007]轮状病毒
    BZOJ 3442 学习小组
    BZOJ 3261 最大异或和
    BZOJ 4029 [HEOI2015]定价
  • 原文地址:https://www.cnblogs.com/zxhl/p/5124314.html
Copyright © 2011-2022 走看看