hdu 4990 Reading comprehension(等比数列法)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4990

思路:曾经有一个矩阵乘法的做法请戳这儿。。

開始我们把数都不模。。。

能够得到一个规律

n:1        ans:1      4^0 
                        n:2     ans:2         2*(4^0)

2                
5      4^0+4^1                        4              10 
     2*(4^0+4^1)

3                 21    4^0+4^1+4^2                6 
            42      2*(4^0+4^1+4^2  )

7                 85    4^0+4^1+4^2+4^3         8 
            170   
2*(4^0+4^1+4^2+4^3  )

所以能够看出规律。。

。然后我们直接计算。

。。。注意不能用等比数列的求和公式。。。。得用分治法中的等比数列求和。。。。。

code:

#include<cstdio>
#include<iostream>
#include<algorithm>
#include<cstring>
#include<cmath>

using namespace std;

typedef __int64 LL;

int mod;

LL power(LL p,LL n)    //高速幂
{
    LL sq=1;
    while(n>0)
    {
        if(n%2) sq=sq*p%mod;
        n/=2;
        p=p*p%mod;
    }
    return sq;
}

LL sum(LL p,LL n)     //等比数列求和
{
    if(n==0) return 1;
    if(n%2)
    {
        return (sum(p,n/2)*(1+power(p,n/2+1)))%mod;
    }
    else
    {
        return (sum(p,n/2-1)*(1+power(p,n/2+1))+power(p,n/2))%mod;
    }
}

int main()
{
    int n,m;
    while(scanf("%d%d",&n,&m)==2)
    {
        mod=m;
        int ans=0;
        if(n&1)
        {
            ans=sum(4,n/2);
        }
        else
        {
            ans=sum(4,n/2-1);
            ans*=2;
        }
        printf("%d\n",ans%mod);
    }
    return 0;
}
时间: 2024-10-20 13:08:29

hdu 4990 Reading comprehension(等比数列法)的相关文章

HDU 4990 Reading comprehension (找规律+矩阵快速幂)

题目链接:HDU 4990 Reading comprehension 题目给的一个程序其实就是一个公式:当N=1时 f[n]=1,当n>1时,n为奇数f[n]=2*f[n-1]+1,n为偶数f[n]=2*f[n-1]. 先不取模,计算前十个找规律.得到一个递推公式:f[n]=2*f[n-2]+f[n-1]+1 然后快速幂解决之. 给出一个神奇的网站(找数列通项):http://oeis.org/ AC代码: #include<stdio.h> #include<string.h&

HDU 4990 Reading comprehension(找规律+矩阵快速幂)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4990 Problem Description Read the program below carefully then answer the question. #pragma comment(linker, "/STACK:1024000000,1024000000") #include <cstdio> #include<iostream> #include

hdu 4990 Reading comprehension

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4990 思路:题目难点就是找矩阵..... code: #include<cstdio> #include<iostream> #include<cstring> using namespace std; typedef long long LL; struct Matrix { LL x[5][5]; friend Matrix operator*(Matrix &

HDU 4990 Reading comprehension (矩阵快速幂)

题意:给一个数列a[i]=2a[i-1](如果i是偶数) a[i]=2a[i-1]+1(如果i是奇数):求a[n]%m (1<=n, m <= 1000000000) 思路:明显用矩阵快速幂,可以推出通项:a[n]=2*a[n-2]+a[n-1]+1 当然并不需要动脑...直接当成偶数处理就好,是奇数的话单独再递推一项就好.也就是a[i]=4a[i-2]+2 //4990 0MS 1620K 1196 B C++ #include<cstdio> #include<iostr

hdu 4990 Reading comprehension (矩阵快速幂)

题意:读程序,找规律 思路:我们把程序输出发现序列为1,2,5,10,21,42,85,170,递推式f(n)=2*f(n-2)+f(n-1)+1 代码: #include <iostream> #include <cstdio> #include <algorithm> #include <cmath> #define ll long long using namespace std; const int N=3,M=3,P=3; ll mod; stru

[矩阵快速幂] hdu 4990 Reading comprehension

题意: 初始值为零,后面奇数项成二加一,偶数项乘二. 思路: 其实区别就在于这个加一. 就是构造一个-1每次相成,然后1-1+1就ok了. 就是 |  -1   1   0  | | -1  1  0 | * |   0   1   1  |  =  | 1  0  1 | |   0   0   2  | 依次类推就好了. 代码: #include"cstdlib" #include"cstdio" #include"cstring" #inc

HDU 4990 Reading comprehension(BestCoder Round #8)

Problem Description: Read the program below carefully then answer the question.#pragma comment(linker, "/STACK:1024000000,1024000000")#include <cstdio>#include<iostream>#include <cstring>#include <cmath>#include <algor

hdu 4990(数学,等比数列求和)

Reading comprehension Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 1270    Accepted Submission(s): 512 Problem Description Read the program below carefully then answer the question.#pragma co

hdu-4990 Reading comprehension(快速幂+乘法逆元)

题目链接: Reading comprehension Time Limit: 2000/1000 MS (Java/Others)     Memory Limit: 32768/32768 K (Java/Others) Problem Description Read the program below carefully then answer the question.#pragma comment(linker, "/STACK:1024000000,1024000000"