摘要:
http://acm.sdut.edu.cn/sdutoj/problem.php?action=showproblem&problemid=2523思路 :就是先统计一下方阵中1多少2多少,确定一下下一步谁走,然后再从头开始找是0的位置,往上填下一步该谁走的棋,然后判断一下能不能构成三横三竖或者是对角线#include #include #include using namespace std ;int ch[8][3] = {{0,1,2},{3,4,5},{6,7,8},{0,3,6},{1,4,7},{2,5,8},{0,4,8},{2,4,6}} ;int sh[110] ; 阅读全文