[fzu1692][矩阵乘法]Key problem

Problem 1692 Key problem
Accept: 214 Submit: 906
Time Limit: 1000 mSec Memory Limit : 32768 KB

Problem Description

Whenever rxw meets Coral, he requires her to give him the laboratory key. Coral does not want to give him the key, so Coral ask him one question. if rxw can solve the problem, she will give him the key, otherwise do not give him. rxw turns to you for help now,can you help him?
N children form a circle, numbered 0,1,2, … …, n-1,with Clockwise. Initially the ith child has Ai apples. Each round game, the ith child will obtain ( L*A(i+n-1)%n+R*A(i+1)%n ) apples. After m rounds game, Coral would like to know the number of apples each child has. Because the final figure may be very large, so output the number model M.
Input

The first line of input is an integer T representing the number of test cases to follow. Each case consists of two lines of input: the first line contains five integers n,m,L,R and M . the second line contains n integers A0, A1, A2 … An-1. (0 <= Ai <= 1000,3 <= n <= 100,0 <= L, R <= 1000,1 <= M <= 10 ^ 6,0 <=m < = 10 ^ 9). After m rounds game, output the number model M of apples each child has.
Output

Each case separated by a space. See sample.
Sample Input

1
3 2 3 4 10000
1 2 3
Sample Output

120 133 131
Source

FOJ月赛-2009年3月— Coral

sol:

和之前写过的某题很像,随便矩乘一下。然后你T飞了。因为极限数据下是T*n^3*logm的。这个T不知道多少,反正会T。
发现转移矩阵是循环同构的,所以我们只要求第一行,然后n^2递推即可。
这题稍微注意一下,一开始就要去%mod,不然就gg了。(像我)

#include<iostream>
#include<algorithm>
#include<string>
#include<cstring>
#include<cstdio>
#include<cstdlib>
#include<cmath>
using namespace std;
typedef long long ll;
typedef double s64;
int n,m,L,R,pyz;
inline int read()
{
    char c;
    int res,flag=0;
    while((c=getchar())>'9'||c<'0') if(c=='-')flag=1;
    res=c-'0';
    while((c=getchar())>='0'&&c<='9') res=(res<<3)+(res<<1)+c-'0';
    return flag?-res:res;
}
const int N=110;
int a[N][N],b[N][N],tmp[N];
inline void simplex(int a[N][N])
{
    for(int i=2;i<=n;++i)
    for(int j=1;j<=n;++j)
    b[i][j]=b[i-1][j-1?j-1:n];
    memset(tmp,0,sizeof(tmp));
    for(int j=1;j<=n;++j)
    for(int k=1;k<=n;++k)
    tmp[j]=(tmp[j]+(ll)a[1][k]*b[k][j]%pyz)%pyz;
    for(int j=1;j<=n;++j) a[1][j]=tmp[j];
    for(int i=2;i<=n;++i)
    for(int j=1;j<=n;++j)
    a[i][j]=a[i-1][j-1?j-1:n];
}
inline void ksm(int t)
{
    while(t)
    {
        if(t&1) simplex(a);
        simplex(b);
        t>>=1;
    }
}
inline void solve()
{
    n=read();
    m=read();
    L=read();
    R=read();
    pyz=read();
    for(int i=1;i<=n;++i) a[1][i]=read()%pyz,b[1][i]=0;
    b[1][n]=L;b[1][1]=1;b[1][2]=R;
    ksm(m);
    for(int i=1;i<n;++i) printf("%d ",a[1][i]);
    printf("%d",a[1][n]);
    printf("\n");
}
int main()
{
//  freopen("1692.in","r",stdin);
//  freopen(".out","w",stdout);
    int T=read();
    while(T--) solve();
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值