zoukankan      html  css  js  c++  java
  • poj 2440 (找递推公式)

    http://poj.org/problem?id=2440

    DNA
    Time Limit: 1000MS   Memory Limit: 65536K
    Total Submissions: 3254   Accepted: 1285

    Description

    A kind of virus has attacked the X planet, and many lives are infected. After weeks of study, The CHO (Creature Healthy Organization) of X planet finally finds out that this kind of virus has two kind of very simple DNA, and can be represented by 101 and 111. Unfortunately, the lives on the planet also have DNA formed by 0s and 1s. If a creature's DNA contains the virus' DNA, it will be affected; otherwise it will not. Given an integer L, it is clear that there will be 2 ^ L different lives, of which the length of DNA is L. Your job is to find out in the 2 ^ L lives how many won't be affected?

    Input

    The input contains several test cases. For each test case it contains a positive integer L (1 <= L <= 10 ^ 8). The end of input is indicated by end-of-file.

    Output

    For each test case, output K mod 2005, here K is the number of lives that will not be affected.

    Sample Input

    4

    Sample Output

    9

    思路:
    这题拿在手里就感觉是找规律,看数据10^8太大,一般暴力方法肯定是超时的,而且结果mod2005,于是就想到应该是个找规律的题
    先写个暴力代码打印一下前面几项:
    输入 输出 规 律
    1 ---> 2 1*2
    2 ---> 4 2*2
    3 ---> 6 2*3
    4 ---> 9 3*3
    5 ---> 15 3*5
    6 ---> 25 5*5
    7 ---> 40 5*8
    8 ---> 64 8*8
    9 ---> 104 8*13
    10 ---> 169 13*13
    不难发现规律为斐波拉契数列:1 2 3 5 8 13 21 。。。。中间的相邻两项 或者 和本身的乘积
    因为数据在 L (1 <= L <= 10 ^ 8) 斐波拉契数将超出整型范围
    利用mod的性质:
    (m*n)%k == ((m%k)*(n%k))%k
    将斐波拉契简化,可是数列还是过长,打表无法打这么长,然后就想,mod之后应该可能出现循环的
    接下来的任务就是找到这个循环节:
    f[0]=1;
    f[1]=2;
    for(i=2;i<100000;i++)
    {
      f[i] = (f[i-1] + f[i-2])%2005;
      if(f[i]==2&&f[i-1]==1) // 找到循环节 再次出现 1 2 3 5 8 。。。 的时候
        break;
    }
    cout<<i-1<<endl;
    得到循环点为 200 的时候
     1 #include <iostream>
     2 #include <stdio.h>
     3 #include <string.h>
     4 
     5 using namespace std;
     6 int f[220];
     7 
     8 int main()
     9 {
    10     int n,i;
    11     f[0] = 1;
    12     f[1] = 2;
    13     for(i=2;i<210;i++)   f[i] = (f[i-1] + f[i-2])%2005;  //知道循环点在200处,故打表210就够了
    14     while(~scanf("%d",&n))
    15     {
    16         printf("%d
    ",(f[(n/2+n%2)%200]*f[n/2%200])%2005);  //利用找到的规律以及mod的性质求解
    17     }
    18     return 0;
    19 }


  • 相关阅读:
    redis 操作
    Xcode 改时间问题 lua代码没反应问题
    apk 反编译
    mysql远程连接命令
    python 利用三方的xlrd模块读取excel文件,处理合并单元格
    eclipse 新建项目不可选择Java Project 解决方法
    eclipse左边的工程列表窗口不见了解决方案
    python_pycham,连接数据库,执行sql
    Eclipse修改默认的语言编码设置,处理乱码
    httprunner中的分层(api、testcase、testsuite)及实际使用
  • 原文地址:https://www.cnblogs.com/crazyapple/p/3204968.html
Copyright © 2011-2022 走看看