- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我想知道 Tic Tac Toe 有多少种可能性,所以我在网上搜索并找到了一个数学定理,它表明 Tic Tac Toe 中有 255168 种可能的游戏。
网站:http://www.se16.info/hgb/tictactoe.htm
所以我想知道,我可以编写一个程序,看看计算机能以多快的速度处理每一种可能性,然后我编写了这段代码:
#include <iostream>
#include <time.h>
#include <windows.h>
#include <stdio.h>
using namespace std;
typedef int TTTField[9];
bool checkIfWon(TTTField j){
if(j[0]==1&&j[1]==1&&j[2]==1) return true;
if(j[0]==2&&j[1]==2&&j[2]==2) return true;
if(j[3]==1&&j[4]==1&&j[5]==1) return true;
if(j[3]==2&&j[4]==2&&j[5]==2) return true;
if(j[6]==1&&j[7]==1&&j[8]==1) return true;
if(j[6]==2&&j[7]==2&&j[8]==2) return true;
if(j[0]==1&&j[3]==1&&j[6]==1) return true;
if(j[0]==2&&j[3]==2&&j[6]==2) return true;
if(j[1]==1&&j[4]==1&&j[7]==1) return true;
if(j[1]==2&&j[4]==2&&j[7]==2) return true;
if(j[2]==1&&j[5]==1&&j[8]==1) return true;
if(j[2]==2&&j[5]==2&&j[8]==2) return true;
if(j[0]==1&&j[4]==1&&j[8]==1) return true;
if(j[0]==2&&j[4]==2&&j[8]==2) return true;
if(j[2]==1&&j[4]==1&&j[6]==1) return true;
if(j[2]==2&&j[4]==2&&j[6]==2) return true;
return false;
}
bool checkIfItsOver(TTTField j){
for(int i=0;i<9;i++){
if(j[i]==0){
return false;
}
}
return true;
}
bool checkListOfFields(TTTField game, TTTField listOfFields[], int amountAdded){
int i,j;
for(j=0;j<amountAdded;j++){
int temporaryField=0;
for(i=0;i<9;i++){
if(game[i]==listOfFields[j][i]) temporaryField++;
}
if(temporaryField==9)return true;
}
return false;
}
void clearField(TTTField game){
int i;
for(i=0;i<9;i++) game[i]=0;
}
void addlistOfFields(TTTField game, TTTField listOfFields[], int amountAdded){
for(int i=0;i<9;i++) listOfFields[amountAdded][i]=game[i];
}
int main(){
TTTField listOfFields[50000];
TTTField temporaryField;
int amountAdded=0,randA,round=1,roundCounter=0,amountPassed=0,amountOfWins=0,amountOfDraws=0,winWith5=0,winWith6=0,winWith7=0,winWith8=0,winWith9=0,roundAmountFinished=0;
for(int i=0;roundCounter<100000;i++){
clearField(temporaryField);
roundAmountFinished=0;
do{
do{
randA=rand()%9;
}while(temporaryField[randA]!=0);
temporaryField[randA]=round;
if(checkIfWon(temporaryField)){
break;
}
if(checkIfItsOver(temporaryField)){
break;
}
round=round==1?2:1;
roundAmountFinished++;
}while(1);
if(!checkListOfFields(temporaryField,listOfFields,amountAdded)){
addlistOfFields(temporaryField,listOfFields,amountAdded);
amountAdded++;
if(checkIfWon(temporaryField)){
amountOfWins++;
}
if(checkIfItsOver(temporaryField)){
amountOfDraws++;
}
switch(roundAmountFinished){
case 4:
winWith5++;
break;
case 5:
winWith6++;
break;
case 6:
winWith7++;
break;
case 7:
winWith8++;
break;
case 8:
winWith9++;
break;
}
}
if(amountPassed==amountAdded){
roundCounter++;
}else roundCounter=0;
amountPassed=amountAdded;
}
system("cls");
printf("Total: %d, roundCounter: %d\nWins with 5 rounds:%d\nWins with 6 rounds:%d\nWins with 7 rounds:%d\nWins with 8 rounds:%d\nWins with 9 rounds:%d\namountOfWins: %d, amountOfDraws: %d",amountAdded,roundCounter,winWith5,winWith6,winWith7,winWith8,winWith9,amountOfWins,amountOfDraws);
return 0;
}
但是返回的总金额是:1916,和网站上的不一样,请问我的代码哪里出了问题。
关于代码的一些信息:
问题出在哪里?
最佳答案
我刚刚注意到,checkListOfFields
将相同的boards 视为相同的games,但这并不完全是真的。您计算的是棋盘结束位置的数量,而不是游戏,这(虽然很有趣)是完全不同的事情。
考虑这两个游戏:
X| | X|O| X|O|X
----- ----- -----
| | | | | |
----- ----- -----
| | | | | |
| |X |O|X X|O|X
----- ----- -----
| | | | | |
----- ----- -----
| | | | | |
您的checkListOfFields
函数检测到这些是同一个游戏,并丢弃一个。因此,它还丢弃了此之后所有潜在移动集的一个拷贝。
关于c++ - 如何通过最大数量的 Tic Tac Toe 可能性?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25410826/
是否可以在表格 View 中提供单独的单元格样式? 最佳答案 是的,看看几乎所有的苹果应用程序。他们倾向于使用不同控件的表格进行设置。这就是表格单元格具有不同重用标识符的原因。这样您就可以将正确的类型
我想知道是否可以在 Javascript 中做这样的事情: one(plus(nine())); // returns 10 看起来是这样,但我不确定如何将 one() 的值传递给 plus() 函数
我正在编写一个算法,在给定模型的情况下,我计算数据集列表的可能性,然后需要对每个可能性进行归一化(概率)。所以像 [0.00043, 0.00004, 0.00321] 这样的东西可能会被转换成 [0
我想检测是否可以进行局域网唤醒。 在我的路由器(Tomato 固件)上有一个包含信息的表格 - 当显示设备“事件(在 ARP 中)”时 - 可以通过 WOL(离线 Linux 电脑)打开该设备。 我想
我正在寻找一种方法来解析具有几个可能使用的不同终止字符的子字符串。我应该使用不同的方法还是有办法使用正则表达式来整理字符? 我当前的代码使用: smallstring = bigstring.subs
目前我有可能使用 surefire 插件在 maven 上运行多个测试,如下所示: mvn clean test -Dsurefire.suiteXmlFiles=test1.xml,test2.xm
最近,我成功地为 HDFS 和 YARN 启用了 HA。现在我有一个事件的和备用的名称节点,自动故障转移工作正常。我正在使用 Cloudera Manager 和 CDH 5。 我有以下问题。 例如,
我想要最简单的动词,它给出给定长度的所有 bool 列表的列表。 例如 f=. NB. Insert magic here f 2 0 0 0 1 1 0 1 1 f 3 0 0 0
这将是一个井字游戏实现: data Row = A | B | C deriving (Show, Read, Eq, Ord, Enum, Bounded) data Column = X
这是一个假设性的问题: 我想构建一个 Chrome 扩展程序,它会跟踪用户在该扩展程序处于事件状态的网页子集上的点击情况,并通过 AJAX 将数据作为 POST 或 GET 请求发送到我在某处运行的外
我们想使用 Entity Framework (.NET 4.0) 构建可以处理 Sql Server、MySQL 和 Oracle 的应用程序。也许 Sqlite 也是。 通过配置文件中的一些设置应
是否可以在 iPhone 上通过指定网络的 SSID 来创建数据连接? 是否可以从应用程序检查具有指定 SSID 的网络的信号/可用性? 问候,斯腾 最佳答案 遗憾的是,如果不使用私有(private
我正在使用各种 lambda 表达式语法测试性能差异。如果我有一个简单的方法: public IEnumerable GetItems(int point) { return this.ite
Effective Java 第 2 版的第 16 条,支持组合优于继承 说如下 “如果父类(super class)在后续版本中获得了一个新方法并且你运气不好给子类一个具有相同签名的方法和不同的返回
已关闭。此问题需要 debugging details 。目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and the
我想知道 Tic Tac Toe 有多少种可能性,所以我在网上搜索并找到了一个数学定理,它表明 Tic Tac Toe 中有 255168 种可能的游戏。 网站:http://www.se16.inf
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 8 年前。 Improve this qu
我想在单个值中存储 4 个 boolean 可能性。例如,我想要一个单一的值来判断一个人是否: IsSingle IsGraduate IsMale IsLookingForPartner 那么将它们
我的 Wicket 口应用程序遇到了一些问题。 问题出在一个名为 OverviewPage 的页面上,这里有一些面板,例如 ListPanel,其中有我的 RepeatingView。 这个Repea
关闭。这个问题需要更多 focused .它目前不接受答案。 想改进这个问题?更新问题,使其仅关注一个问题 editing this post . 7年前关闭。 Improve this questi
我是一名优秀的程序员,十分优秀!