uva 10870 Recurrences

简介: 点击打开uva 10870 思路:构造矩阵+矩阵快速幂 分析: 1 题目给定f(n)的表达式 f(n) = a1 f(n - 1) + a2 f(n - 2) + a3 f(n -3) + .

点击打开uva 10870

思路:构造矩阵+矩阵快速幂

分析:

1 题目给定f(n)的表达式 f(n) = a1 f(n - 1) + a2 f(n - 2) + a3 f(n -3) + ... + ad f(n - d)对于n > d的时候

2 那么我们可以构造出矩阵

   a1 a2 ... an        f(n-1)             f(n)

   1 0 ......... 0        f(n-2)           f(n-1)

   0 1 ..........0  *     ........  =>       ......

   ..................         .......              ......

   0 0 ...... 1 0         .......              f(n-d)

   0 0 0 0 ... 0        f(n-d)            f(n-d+1)

3 题目有个地方错了,两个case之间根本不需要空行


代码:

/************************************************
 * By: chenguolin                               * 
 * Date: 2013-08-29                             *
 * Address: http://blog.csdn.net/chenguolinblog *
 ************************************************/
#include<cmath>
#include<cstdio>
#include<cstring>
#include<iostream>
#include<algorithm>
using namespace std;

typedef long long int64;
const int N = 16;

int d , n , MOD;
int a[N] , f[N];
struct Matrix{
    int64 mat[N][N];
    Matrix operator*(const Matrix &m)const{
        Matrix tmp;
        for(int i = 0 ; i < d ; i++){
            for(int j = 0 ; j < d ; j++){
                tmp.mat[i][j] = 0;
                for(int k = 0 ; k < d ; k++)
                    tmp.mat[i][j] += mat[i][k]*m.mat[k][j]%MOD;
                tmp.mat[i][j] %= MOD;
            }
        }
        return tmp;
    }
};

void init(Matrix &m){
    memset(m.mat , 0 , sizeof(m.mat));
    for(int i = 0 ; i < d ; i++)
        m.mat[0][i] = a[i+1];
    for(int i = 1 ; i < d ; i++)
        m.mat[i][i-1] = 1;
}

int Pow(Matrix &m){
    if(n <= d) 
        return f[n];
    n -= d;
    Matrix ans;
    memset(ans.mat , 0 , sizeof(ans.mat));
    for(int i = 0 ; i < d ; i++)
        ans.mat[i][i] = 1;
    while(n){
        if(n&1)
            ans = ans*m;
        n >>= 1;
        m = m*m;
    }
    int64 sum = 0;
    for(int i = 0 ; i < d ; i++)
        sum += ans.mat[0][i]*f[d-i]%MOD; 
    return sum%MOD;
}

int main(){
    Matrix m;
    bool isFirst = true;
    while(scanf("%d%d%d" ,&d , &n , &MOD) && d+n+MOD){
        if(isFirst)
            isFirst = false;
        else
            puts("");
        for(int i = 1 ; i <= d ; i++){
            scanf("%d" , &a[i]);
            a[i] %= MOD;
        }
        for(int i = 1 ; i <= d ; i++){
            scanf("%d" , &f[i]);
            f[i] %= MOD;
        }
        init(m);
        printf("%d\n" , Pow(m));
    } 
    return 0;
}



目录
相关文章
uva375 Inscribed Circles and Isosceles Triangles
uva375 Inscribed Circles and Isosceles Triangles
42 0
|
C++
UVA 之10010 - Where's Waldorf?
版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/SunnyYoona/article/details/24863879 ...
713 0
|
机器学习/深度学习
uva 12470 Tribonacci
点击打开uva12470  思路: 矩阵快速幂 分析: 1 裸题 代码: /************************************************ * By: chenguolin ...
993 0
uva 10273 Eat or Not to Eat?
点击打开链接uva 10273 思路: 暴力求解 分析: 1 题目要求没有吃掉的奶牛的个数已经最后一次吃掉奶牛的天数 2 没有其它的方法只能暴力,对于n头牛的n个周期求最小公倍数,然后在2个公倍数之内暴力求解 代码: #inclu...
830 0
|
人工智能
uva 10189 Minesweeper
/* Minesweeper WA了n次才知道uva格式错了也返回wa没有pe啊尼玛 */ #include&lt;iostream&gt; #include&lt;stdio.h&gt; #include&lt;string.h&gt; using namespace std; char a[105][105]; int main() { int i,j,n,m,
939 0
|
人工智能
uva 11300 - Spreading the Wealth
点击打开链接uva 11300 思路:数学分析+贪心 分析: 1 首先最终每个人的金币数量可以计算出来,它等于金币总数除以人数n。接下来我们用m来表示每人的最终的金币数 2 现在假设编号为i的人初始化为Ai枚金币,Xi表示第i个人给第i-1个人Xi枚金币,对于第一个人来说他是给第n个人。
864 0
|
人工智能
uva3177BeijingGuards
题意:有n个人围城一个圈,其中第i个人想要ri个不同的礼物,相邻的两个人可以聊天,炫耀自己的礼物,如果两个相邻的人拥有同一种礼物,则双方都会很不高兴。问:医用需要多少种礼物才能满足所有人的需要?假设每种礼物有无穷多个,不相邻的两个人不会一起聊天。
753 0
UVA11991
给出一个包含n个整数的数组,每次询问两个整数k和v,输出从左到右第k个v的下标(从1到n) 白书指导书的例题。。不过可以写的更短一点: #include #include #include #include using namespace std; mapa; int m...
596 0