poj 3150 Cellular Automaton(矩阵快速幂)

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

大致题意:给出n个数,问经过K次变换每个位置上的数变为多少。第i位置上的数经过一次变换定义为所有满足 min( abs(i-j),n-abs(i-j) )<=d的j位置上的数字之和对m求余。

思路:

我们先将上述定义表示为矩阵

B = 

1 1 0 0 1

1 1 1 0 0

0 1 1 1 0

0 0 1 1 1

1 0 0 1 1

B[i][j] = 表示i与j满足上述关系,B[i][j] = 0表示i与j不满足上述关系。根据这个矩阵,那么样例1中1 2 2 1 2经过一次变换变成了5 5 5 5 4。

其实这也是矩阵相乘的问题,令A = 1 2 2 1 2,那么A * B = 5 5 5 5 4。那么要经过K次变换,答案无疑是 A*(B^k)mod m。

用矩阵快速幂的复杂度为 O(n^3 * log k),n最大是500,K也很大,必会TLE。logk是不会变了,优化在于n^3。仔细观察B矩阵,发现它是有规律的,它的每一行都是它上一行右移一位得到的。那么在矩阵相乘时,我们只需计算第一行,然后整个矩阵就算出来了,这样复杂度降为O(n^2 * log k)。

A这道题真是太坎坷了。在矩阵相乘时我传的两个参数是结构体,里面是500*500的数组,一运行就崩了,一直找找不到原因,最后发现传参的问题,它相当于直接把两个结构体传过去,显然太大了,随后就改成指针传参,后来因为没有释放内存,1MLE,再后来把k和d 输反了,1WA,最后终于2000+ms过了。。

#include <stdio.h>
#include <iostream>
#include <algorithm>
#include <set>
#include <map>
#include <vector>
#include <math.h>
#include <string.h>
#include <queue>
#include <string>
#include <stdlib.h>
#define LL long long
#define _LL __int64
#define eps 1e-8
#define PI acos(-1.0)
using namespace std;

const int INF = 0x3f3f3f3f;
const int maxn = 510;

_LL b[maxn],ans[maxn];
int n,m,k,d;
int mod;

struct matrix
{
    _LL mat[maxn][maxn];
}a,*res;

matrix *matrixMul(matrix *x, matrix *y)
{
    matrix *tmp;
    tmp = (matrix *)malloc(sizeof(matrix));
    memset((*tmp).mat,0,sizeof((*tmp).mat));
    for(int i = 0; i < 1; i++)
    {
        for(int k = 0; k < n; k++)
        {
            if( (*x).mat[i][k] == 0) continue;
            for(int j = 0; j < n; j++)
            {
                (*tmp).mat[i][j] += (*x).mat[i][k] * (*y).mat[k][j];
                if((*tmp).mat[i][j] >= mod)
                    (*tmp).mat[i][j] %= mod;
            }
        }
    }

	for(int i = 0; i < n; i++)
	{
		for(int j = 0; j < n; j++)
		{
			if(i == 0) (*x).mat[i][j] = (*tmp).mat[i][j];
			else (*x).mat[i][j] = (*x).mat[i-1][(j-1+n)%n];
		}
	}
	free(tmp);
    return x;
}

matrix *Mul(matrix *x, int k)
{
    matrix *tmp;
	tmp = (matrix *)malloc(sizeof(matrix));
	memset((*tmp).mat,0,sizeof((*tmp).mat));
	for(int i = 0; i < n; i++)
        (*tmp).mat[i][i] = 1;

    while(k)
    {
        if(k&1)
            tmp = matrixMul(tmp,x);
        x = matrixMul(x,x);
        k >>= 1;
    }
    return tmp;
}

int main()
{
	while(~scanf("%d %d %d %d",&n,&m,&d,&k))
	{
		mod = m;
		for(int i = 0; i < n; i++)
			scanf("%I64d",&b[i]);

		for(int i = 0; i < n; i++)
		{
			for(int j = 0; j < n; j++)
			{
				if(min (abs(i-j),n-abs(i-j)) <= d)
					a.mat[i][j] = 1;
				else a.mat[i][j] = 0;
			}
		}

		res = Mul(&a,k);

		memset(ans,0,sizeof(ans));

		for(int i = 0; i < n; i++)
		{
			for(int j = 0; j < n; j++)
			{
				ans[i] += b[j] * ((*res).mat[j][i]);
				if(ans[i] >= mod)
					ans[i] %= mod;
			}
		}
		for(int i = 0; i < n-1; i++)
			printf("%I64d ",ans[i]);
		printf("%I64d\n",ans[n-1]);
   }
    return 0;
}

poj 3150 Cellular Automaton(矩阵快速幂)

时间: 2024-10-03 14:45:04

poj 3150 Cellular Automaton(矩阵快速幂)的相关文章

[POJ 3150] Cellular Automaton (矩阵快速幂 + 矩阵乘法优化)

Cellular Automaton Time Limit: 12000MS   Memory Limit: 65536K Total Submissions: 3048   Accepted: 1227 Case Time Limit: 2000MS Description A cellular automaton is a collection of cells on a grid of specified shape that evolves through a number of dis

POJ 3150 Cellular Automaton --矩阵快速幂及优化

题意:给一个环,环上有n块,每块有个值,每一次操作是对每个点,他的值变为原来与他距离不超过d的位置的和,问k(10^7)次操作后每块的值. 解法:一看就要化为矩阵来做,矩阵很好建立,大白书P157页有讲,大概为: [1 1 0 .. 0 1] [1 1 1 .. .. 0] ... [1 1 .. .. .. 1]  的循环矩阵,可以证明,循环矩阵的乘积还是循环矩阵,且循环矩阵的性质: a[i][j] = a[i-1][j-1] (循环的) ,所以,我们每次矩阵相乘只需要算出第一行,余下的不需要

POJ 3150 Cellular Automaton(矩阵乘法+二分)

题目链接 题意 : 给出n个数形成环形,一次转化就是将每一个数前后的d个数字的和对m取余,然后作为这个数,问进行k次转化后,数组变成什么. 思路 :下述来自here 首先来看一下Sample里的第一组数据.1 2 2 1 2经过一次变换之后就成了5 5 5 5 4它的原理就是a0 a1 a2 a3 a4->(a4+a0+a1) (a0+a1+a2) (a1+a2+a3) (a2+a3+a4) (a3+a4+a0) 如果用矩阵相乘来描述,那就可以表述为1xN和NxN的矩阵相乘,结果仍为1xN矩阵a

POJ 3150 Cellular Automaton

矩阵的题就是这么伤脑筋啊~~    sad-- 题目大意: 一个环上有n个数,定义一种操作将它和它距离小于d的数加和再模m.每次操作刷新所有数.问k次之后都将变成什么数? 解题思路: 矩阵快速幂加速递推. 按照正常思路第i次操作是基于第i-1次操作完成的,也就是说要完成第i次操作需要先完成第i-1次. 但是用于矩阵之后可以直接推出第i次与第一次之间是什么关系. 这个矩阵是可以通过矩阵快速幂得出的.取模也是顺带的~ 如果你注意关系矩阵的建立的话,你会发现这么一个规律.对于d=1来说: b^1 =

poj 2778 AC自动机 + 矩阵快速幂

// poj 2778 AC自动机 + 矩阵快速幂 // // 题目链接: // // http://poj.org/problem?id=2778 // // 解题思路: // // 建立AC自动机,确定状态之间的关系,构造出,走一步 // 能到达的状态矩阵,然后进行n次乘法,就可以得到状态间 // 走n步的方法数. // 精髓: // 1):这个ac自动机有一些特别,根节点是为空串,然而 // 每走一步的时候,如果没法走了,这时候,不一定是回到根 // 节点,因为有可能单个的字符时病毒,这样

POJ 3070 Fibonacci(矩阵快速幂)

题目链接 题意 : 用矩阵相乘求斐波那契数的后四位. 思路 :基本上纯矩阵快速幂. 1 //3070 2 #include <iostream> 3 #include <cstring> 4 #include <cstdio> 5 6 using namespace std; 7 8 struct Matrix 9 { 10 int v[2][2]; 11 }; 12 int n; 13 14 Matrix matrix_mul(Matrix a,Matrix b) 1

POJ 3233-Matrix Power Series(矩阵快速幂+二分求矩阵和)

Matrix Power Series Time Limit:3000MS     Memory Limit:131072KB     64bit IO Format:%I64d & %I64u Submit Status Practice POJ 3233 Appoint description:  System Crawler  (2015-02-28) Description Given a n × n matrix A and a positive integer k, find the

POJ 3070 Fibonacci(矩阵快速幂模板)

Description: In the Fibonacci integer sequence, F0 = 0, F1 = 1, and Fn = Fn − 1 + Fn − 2 for n ≥ 2. For example, the first ten terms of the Fibonacci sequence are: 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, … An alternative formula for the Fibonacci sequence i

poj 3070 Fibonacci 【矩阵快速幂 求第N个斐波那契数%1000】

Fibonacci Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 11123   Accepted: 7913 Description In the Fibonacci integer sequence, F0 = 0, F1 = 1, and Fn = Fn ? 1 + Fn ? 2 for n ≥ 2. For example, the first ten terms of the Fibonacci sequenc