UVA - 1386 Cellular Automaton

题目:点击打开链接

题意:一个细胞自动机包含n个格子,每个格子的值都会变成它距离不超过d的所有格子的值,求最后的结果

思路:这个是循环矩阵,可以用O(n^2)的时间过掉

#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm>
using namespace std;
typedef long long ll;
const int maxn = 505;

int n, m, d, k;
ll ans[maxn], matrix[maxn];
ll c[maxn+5];

void mul(ll a[], ll b[]) {
	memset(c, 0, sizeof(c));
	for (int i = 0; i < n; i++)
		for (int j = 0; j < n; j++)
			c[i] += a[j] * b[(i-j+n) % n];
	for (int i = 0; i < n; i++)
		b[i] = c[i] % m;
}

int main() {
	while (scanf("%d%d%d%d", &n, &m, &d, &k) != EOF) {
		memset(ans, 0, sizeof(ans));
		memset(matrix, 0, sizeof(matrix));
		for (int i = 0; i < n; i++)
			cin>>ans[i];

		matrix[0] = 1;
		for (int i = 1; i <= d; i++)
			matrix[i] = matrix[n - i] = 1;

		while (k) {
			if (k & 1)
				mul(matrix, ans);
			mul(matrix, matrix);
			k >>= 1;
		}

		for (int i = 0; i < n - 1; i++)
			printf("%lld ", ans[i]);
		printf("%lld\n", ans[n-1]);
	}
	return 0;
}
时间: 2024-12-26 05:11:20

UVA - 1386 Cellular Automaton的相关文章

UVA 1386 - Cellular Automaton(循环矩阵)

UVA 1386 - Cellular Automaton 题目链接 题意:给定一个n格的环,现在有个距离d,每次变化把环和他周围距离d以内的格子相加,结果mod m,问经过k次变换之后,环上的各个数字 思路:矩阵很好想,每个位置对应周围几个位置为1,其余位置为0,但是这个矩阵有500,有点大,直接n^3去求矩阵不太合适,然后观察发现这个矩阵是个循环矩阵,循环矩阵相乘的话,只需要保存一行即可,然后用n^2的时间就足够计算了 代码: #include <stdio.h> #include <

Uva 1386 - Cellular Automaton ( 矩阵乘法 + 循环矩阵 )

Uva 1386 - Cellular Automaton ( 矩阵乘法 + 循环矩阵 ) #include <cstdio> #include <cstring> #define CLR( a, b ) memset( a, b, sizeof(a) ) int MOD; #define MAX_SIZE 500 struct Mat { int n; LL mat[MAX_SIZE][MAX_SIZE]; Mat( int _n = 0 ) { n = _n; CLR( mat

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(矩阵快速幂)

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不满足上述关系.根据这个

【POJ】3150 Cellular Automaton(矩阵乘法+特殊的技巧)

http://poj.org/problem?id=3150 这题裸的矩阵很容易看出,假设d=1,n=5那么矩阵是这样的 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 这是n^3的,可是n<=500,显然tle 我们观察这个n×n的矩阵,发现没一行都是由上一行向右移得到的. 而根据Cij=Aik×Bkj,我们可以发现,其实Bkj==Akj==Ai(j-k) 那么就可以降二维变一维,每一次只要算第一行即可,即Cj=Ak*Bj-k #includ

POJ 3150 Cellular Automaton

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

【poj 3150】Cellular Automaton 矩阵

题目:http://poj.org/problem?id=3150 Cellular Automaton 矩阵乘法+二分 Cellular Automaton Time Limit: 12000MS Memory Limit: 65536K Total Submissions: 3544 Accepted: 1428 Case Time Limit: 2000MS Description A cellular automaton is a collection of cells on a gri

[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(特殊的矩阵,降维优化)

A cellular automaton is a collection of cells on a grid of specified shape that evolves through a number of discrete time steps according to a set of rules that describe the new state of a cell based on the states of neighboring cells. The order of t