Tic-Tac-Toe FZU - 2283

2023-11-03 23:31
文章标签 tic tac toe fzu 2283

本文主要是介绍Tic-Tac-Toe FZU - 2283,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

Kim likes to play Tic-Tac-Toe.

Given a current state, and now Kim is going to take his next move. Please tell Kim if he can win the game in next 2 moves if both player are clever enough.

Here “next 2 moves” means Kim’s 2 move. (Kim move,opponent move, Kim move, stop).

Game rules:

Tic-tac-toe (also known as noughts and crosses or Xs and Os) is a paper-and-pencil game for two players, X and O, who take turns marking the spaces in a 3×3 grid. The player who succeeds in placing three of their marks in a horizontal, vertical, or diagonal row wins the game.

Input

First line contains an integer T (1 ≤ T ≤ 10), represents there are T test cases.

For each test case: Each test case contains three lines, each line three string(“o” or “x” or “.”)(All lower case letters.)

x means here is a x

o means here is a o

. means here is a blank place.

Next line a string (“o” or “x”) means Kim is (“o” or “x”) and he is going to take his next move.

Output

For each test case:

If Kim can win in 2 steps, output “Kim win!”

Otherwise output “Cannot win!”

Sample Input
3
. . .
. . .
. . .
o
o x o
o . x
x x o
x
o x .
. o .
. . x
o
Sample Output
Cannot win!
Kim win!
Kim win!
题意就是在走两步能不能赢 自己模拟不出来 比着队友的写的QAQ
#include <iostream>
#include<cstdio>
#include<stack>
#include<cstring>
#include<algorithm>
using namespace std;
char maps[5][5];
int check(char a)
{if(maps[0][0]==maps[0][1]&&maps[0][2]==maps[0][0]&&maps[0][0]==a)return 1;else if(maps[0][0]==maps[1][1]&&maps[2][2]==maps[0][0]&&maps[0][0]==a)return 1;else   if(maps[1][0]==maps[2][0]&&maps[0][0]==maps[1][0]&&maps[1][0]==a)return 1;else  if(maps[1][0]==maps[1][1]&&maps[1][2]==maps[1][0]&&maps[1][0]==a)return 1;else  if(maps[2][0]==maps[2][1]&&maps[2][0]==maps[2][2]&&maps[2][0]==a)return 1;else if(maps[0][1]==maps[1][1]&&maps[2][1]==maps[0][1]&&maps[0][1]==a)return 1;else  if(maps[0][2]==maps[1][2]&&maps[2][2]==maps[0][2]&&maps[0][2]==a)return 1;else  if(maps[0][2]==maps[1][1]&&maps[2][0]==maps[0][2]&&maps[0][2]==a)return 1;elsereturn 0;
}
int main()
{int t;cin>>t;while(t--){for(int i=0;i<3;i++){for(int j=0;j<3;j++)cin>>maps[i][j];}char a;cin>>a;int count=0,flag1=0,flag2=0;for(int i=0;i<3;i++){for(int j=0;j<3;j++){if(maps[i][j]=='.')  //下第一步 这时队手没下 所以如果可以练成一条线就赢了{maps[i][j]=a;              //和开场赢一起考虑在内了if(check(a)){flag1=1;break;}count=0;   //用于数有几种赢法for(int k=0;k<3;k++){for(int l=0;l<3;l++){if(maps[k][l]=='.'){maps[k][l]=a;if(check(a)){count++;}if(count>1)   //赢法有两种就能赢{flag2=1;break;}maps[k][l]='.'; // 回溯}}if(flag2)break;}maps[i][j]='.';  //第一步回溯}}if(flag1||flag2)break;}if(flag1||flag2)cout<<"Kim win!"<<endl;elsecout<<"Cannot win!"<<endl;}return 0;
}

这篇关于Tic-Tac-Toe FZU - 2283的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/341637

相关文章

fzu 2277 Change 线段树

Problem 2277 Change Time Limit: 2000 mSec    Memory Limit : 262144 KB  Problem Description There is a rooted tree with n nodes, number from 1-n. Root’s number is 1.Each node has a value ai.

fzu 2275 Game KMP

Problem 2275 Game Time Limit: 1000 mSec    Memory Limit : 262144 KB  Problem Description Alice and Bob is playing a game. Each of them has a number. Alice’s number is A, and Bob’s number i

【FZU】1921 栀子花开 线段树果题

Problem 1921 栀子花开 Accept: 216    Submit: 745 Time Limit: 1000 mSec    Memory Limit : 32768 KB Problem Description 这是一个栀子花开的季节,也是一个离别的季节,四年一千多个日日夜夜,那校园的角角落落,留下了我们沉思的身影;那上百次的成绩排名表,印证了我们深深浅浅不断进步的

【FZU】2171 防守阵地 II 线段树

Problem 2171 防守阵地 II Accept: 96    Submit: 360 Time Limit: 3000 mSec    Memory Limit : 32768 KB Problem Description 部队中总共有N个士兵,每个士兵有各自的能力指数Xi,在一次演练中,指挥部确定了M个需要防守的地点,指挥部将选择M个士兵依次进入指定地点进行防守任务,获得

【FZU】2105 Digits Count 线段树

传送门:【FZU】2105 Digits Count 题目分析:与、或、异或三种操作都是每一位相互独立的,所以可以将线段树建四棵,分别对应一位,and和or操作相当于覆盖操作,xor操作相当于反转操作,就和普通的线段树方法类似,设立两个lazy标记即可。查询的时候求得每一位的1的个数*权重(1,2,4,8),全部累加就是答案。 代码如下: #include <cst

【Leetcode 2283 】 判断一个数的数字计数是否等于数位的值—— 数组计数

给你一个下标从 0 开始长度为 n 的字符串 num ,它只包含数字。 如果对于 每个 0 <= i < n 的下标 i ,都满足数位 i 在 num 中出现了 num[i]次,那么请你返回 true ,否则返回 false 。 示例 1: 输入:num = "1210"输出:true解释:num[0] = '1' 。数字 0 在 num 中出现了一次。num[1] = '2' 。数

FZU 1894(单调队列第一发)

题意:参加志愿者选拔的同学们排队接受面试官们的面试。参加面试的同学们按照先来先面试并且先结束的原则接受面试官们的考查。  输入含义1CNAME RP_VALUE名字为NAME的人品值为RP_VALUE的同学加入面试队伍。(名字长度不大于5,0 <= RP_VALUE <= 1,000,000,000)2G排在面试队伍最前面的同学面试结束离开考场。3Q主面试官John想知道当前正在接受面试的队伍中

fzu 2077

这是一个中文题,学长挂给学弟的,结果爆零了 题意:lzs种了n棵树,每棵树每天长高一定的高度。某一天,lzs想知道树长得怎么样了,你能求出那一天最高的树有多高吗?(就是粘贴的他的题目) 一个短的题目往往都是一个很有意思的题目 思路:把它按原始速度和原始的高度排序,速度优先级高;然后遍历寻找之后的有没有比第一个大的,有的话就把它加入到新的集合内,再从新的集合中一直遍历上一步,直到m次 #

FZU 2122(KMP)

/*FZU 2122(简单字符串匹配,KMP算法)题目大意:就是给你3个字符串,第一个是模式串(用该串在文本串中去查找与之相同的串)即子串,第二个字符串是去替换在文本串(即主串)已找到相同的子串,从而最后输出产生的新串,如果没有找到,就原样输出文本串(即主串),第三个字符串就是文本串(即主串)个人解题思想:就是用KMP算法找到子串在主串中的位置,然后首先用相同字符“~”去替换主串中找到的

FZU 2111【 Min Number】

Description Now you are given one non-negative integer n in 10-base notation, it will only contain digits ('0'-'9'). You are allowed to choose 2 integers i and j, such that: i!=j, 1≤i<j≤|n|, here |