• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

【codeforces3C】Tic-tac-toe

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

【链接】 我是链接,点我呀:)
【题意】

题意

【题解】

写一个函数判断当前局面是否有人赢。 然后枚举上一个人的棋子下在哪个地方。 然后把他撤回 看看撤回前是不是没人赢然后没撤回之前是不是有人赢了。 如果是的话 那么就是满足要求的啦吸吸吸

【代码】

#include <bits/stdc++.h>
#define ll long long
using namespace std;

const ll MOD = 998244353;

string s[10];
string ans[]={"zero","first","second"};
int a[5][5];
int cnt[5],nex;

//判断正对角线
//如果是true,返回第一个人赢还是第二个人赢
pair<bool,int> zheng(){
    if (a[1][1]==a[2][2] && a[2][2]==a[3][3]){
        if (a[1][1]==3){
            return make_pair(false,3);
        }else return make_pair(true,a[1][1]);
    }else return make_pair(false,3);
}

//反对角线
//如果是true,返回是谁
pair<bool,int> fan(){
    if (a[1][3]==a[2][2] && a[2][2]==a[3][1]){
        if (a[1][3]==3){
            return make_pair(false,3);
        }else return make_pair(true,a[1][3]);
    }else return make_pair(false,3);
}

//判断每一行,返回相等的行
vector<int> hang(){
    vector<int> v;v.clear();
    for (int i = 1;i <= 3;i++){
        if (a[i][1]==a[i][2] && a[i][2]==a[i][3]){
            if (a[i][1]==3) continue;
            v.push_back(a[i][1]);
        }
    }
    return v;
}

//判断每一列,返回相等的列
vector<int> lie(){
    vector<int> v;v.clear();
    for (int i = 1;i <= 3;i++){
        if (a[1][i]==a[2][i] && a[2][i]==a[3][i]){
            if (a[1][i]==3) continue;
            v.push_back(a[1][i]);
        }
    }
    return v;
}

//判断是否有人赢
bool somebodywin(){
    if ((int)hang().size()>0) return true;
    if ((int)lie().size()>0) return true;
    if (zheng().first==true) return true;
    if (fan().first==true) return true;
    return false;
}

//让x对应数字的标记变成空白,然后看看是不是没有人赢
int stepbackisok(int x){
    for (int i = 1;i <= 3;i++)
        for (int j = 1;j <= 3;j++)
            if (a[i][j]==x){
                a[i][j] = 3;
                if (!somebodywin()) return true;
                a[i][j] = x;
            }
    return false;
}

int main(){
    ios::sync_with_stdio(0),cin.tie(0);
    for (int i = 1;i <= 3;i++){
        cin >> s[i];
        for (int j = 1;j <= 3;j++){
            if (s[i][j-1]=='X'){
                a[i][j] = 1;
            }else if (s[i][j-1]=='0'){
                a[i][j] = 2;
            }else a[i][j] = 3;
            cnt[a[i][j]]++;
        }
    }
    if (cnt[1]==cnt[2]+1){
        nex = 2;
    }else if (cnt[1]==cnt[2]){
        nex = 1;
    }else{
        cout<<"illegal"<<endl;
        return 0;
    }
    if (cnt[1]+cnt[2]==9 && !somebodywin()){
        cout<<"draw"<<endl;
        return 0;
    }
    int last = 3-nex;
    //把上一步去掉,没人赢,加上这一步上个人赢
    if (somebodywin()){
        //如果有人赢了
        if (stepbackisok(last)){
            cout<<"the "<<ans[last]<<" player won"<<endl;
        }else{
            cout<<"illegal"<<endl;
        }
    }else{
        cout<<ans[nex]<<endl;
    }

	return 0;
}


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C#深入理解AutoResetEvent和ManualResetEvent发布时间:2022-07-14
下一篇:
C语言字符串处理函数发布时间:2022-07-14
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap