2
Products
reviewed
873
Products
in account

Recent reviews by pip(in game)

Showing 1-2 of 2 entries
1 person found this review helpful
13.0 hrs on record (0.1 hrs at review time)
an error massage read "Invalid Email Entered" keeps pop up when the first time i launched this game and tried to register a activision account .

I'm not the single player who encountered this problem and until today activision still leave it unfixed.

indeed i can register a so called activision account via web but it doesn't mean it's ok to bother the players instead of fix it.
Posted 25 November, 2023.
Was this review helpful? Yes No Funny Award
12 people found this review helpful
4 people found this review funny
2
2
21
5.6 hrs on record (5.0 hrs at review time)
欢迎收看我在sbeam上学算法系列
觉得太长不看的话可以直接看最后部分

元胞自动机
这是某个计算机大佬冯诺依曼为了模拟生命体自我复制功能而开发的算法;
关于这个算法,你需要知道:
0.典型的元胞自动机,是定义在一个平面网格上的; 图片解释 [upload.wikimedia.org]
1.网格上任意一个小单元都是一个元胞;
2.每一个元胞都有有限的状态,比如0或1,生或死,黑或白;
3.一个元胞和他周围的4个或8个元胞是相邻关系;
4.一个元胞的状态可以按照某种规则进行改变,改变的依据是该元胞的状态以及相邻元胞的状态;
5.元胞的状态改变是同时进行的;
6.该算法的用途很广;可以用来模拟细胞的增殖,一场森林大火等等;

康威生命游戏
这是元胞自动机算法的一种运用;可以模拟细胞的增殖,生长及死亡; 具体效果 [upload.wikimedia.org]
0.简单来说,就是每个细胞有两种状态-存活或死亡,每个细胞与以自身为中心的周围八格细胞产生互动;
1.具体的游戏规则已经有大佬列出来了,可以翻测评找找看;我在这里做一点补充;
2.随着游戏的进行;杂乱无序的细胞可以演变成一些精致的图案;
3.对于已经拥有固定模式的图案,也可以因为"外来细菌"的干扰而回到杂乱无序的状态,然后再次从无序中产生有序;
4.一些非常有趣的图像:
类型一 [upload.wikimedia.org]
类型二 [upload.wikimedia.org]
类型三 [upload.wikimedia.org]
类型四 [upload.wikimedia.org]
5.总之就是很好玩~希望大家可以尝试一下,看能不能做出一些漂亮的图案!

最后说说
0.参考资料来源:
康威生命游戏的学习 [blog.csdn.net]
元胞自动机的运用 [www.zhihu.com]
1.搞得我也想做一个游戏了;
2.你问我是怎么知道这玩意的?是因为今天是2018年MCM美赛第三天,我想不出来解法就跑来sbeam上玩游戏,碰巧发现了这个游戏;还真是冤家路窄;
3.美赛要凉了,继续舔darling去了;

堇了,还在看?
既然你还想看;那我就额外放送一点东西好了
康威生命游戏matlab代码的实现


x = 2:n-1; y = 2:n-1; %nearest neighbor sum

sum(x,y) = cells(x,y-1) + cells(x,y+1) + ... cells(x-1, y) + cells(x+1,y) + ... cells(x-1,y-1) + cells(x-1,y+1) + ... cells(3:n,y-1) + cells(x+1,y+1);

% The CA rule
cells = (sum==3) | (sum==2 & cells);


是不是很刺激?
Posted 10 February, 2018. Last edited 10 February, 2018.
Was this review helpful? Yes No Funny Award
Showing 1-2 of 2 entries