IEEEXtreme 10.0 - Checkers Challenge
这是 meelo 原创的 IEEEXtreme极限编程大赛题解
Xtreme 10.0 - Checkers Challenge
题目来源 第10届IEEE极限编程大赛
https://www.hackerrank.com/contests/ieeextreme-challenges/challenges/draughts-1
Watch the following YouTube video clip. Your task is to compute the number of possible ways the white player can win from an opening state of a single white piece in a game of Turkish Draughts. For more information on the game, you can view the Wikipedia page.
For this challenge, we will use the following variation on the official rules:
The black pieces can be arbitrary placed, and will not necessarily be located at places reachable in a legal game
A single white piece is a king if, and only if, it is placed in or reaches the top most line. Once a piece is a king it remains a king throughout.
A white piece can capture by jumping over a single black piece to the left, right or upwards, landing in the adjacent square
A white king can capture by jumping left, right, upwards or backwards and can skip arbitrary number of blank squares before and after the black piece
After capturing a black piece, the white piece (or king) must turn 90 degrees or keep moving in the same direction (no 180 degree turns are allowed).
We ask for the number of different ways the white player can win a single move. White wins by capturing all black pieces.
Input Format
Each input begins with an integer t, on a line by itself, indicating how many testcases are present.
Each testcase will contain 8 lines with the state of the board. The board will have a single white piece o
, some black pieces x
, and empty places .
. White's side of the board is at the bottom of the board. So if the white piece were to reach to top row of the board, it would become a king.
In between each testcase is a blank line.
Constraints
1 ≤ t ≤ 5
There will always be at least 1, and no more than 16, black pieces in each game.
The game board will always be 8x8 squares in size.
Output Format
For each testcase, output, on a line by itself, the number of possible ways the white can win, or 0
if he cannot.
Sample Input
3
.......o
.x.x.x..
xxxx.xx.
........
........
.x.xx..x
x.......
..x...x.
........
........
....o...
........
....x...
........
........
........
...o....
........
...x....
........
........
........
........
........
Sample Output
12
0
5
Explanation
The first testcase is the state of the board in the 56th second of the YouTube video. There are 12 ways in which this game can be won. These ways are represented below:
down 7, left 3, up 6, left 2, down 4, right 4, up 4, left 3, down 4, left 3, up 4, right 5, down 6, left 5, up 5, right 2
down 7, left 3, up 6, left 2, down 4, right 4, up 4, left 3, down 4, left 3, up 4, right 5, down 6, left 5, up 5, right 3
down 7, left 3, up 6, left 2, down 4, right 4, up 4, left 3, down 4, left 3, up 4, right 5, down 6, left 5, up 5, right 4
down 7, left 3, up 6, left 2, down 4, right 4, up 4, left 3, down 4, left 3, up 4, right 5, down 6, left 5, up 5, right 5
down 7, left 3, up 6, left 2, down 4, right 4, up 4, left 3, down 4, left 3, up 4, right 5, down 6, left 5, up 5, right 6
down 7, left 3, up 6, left 2, down 4, right 4, up 4, left 3, down 4, left 3, up 4, right 5, down 6, left 5, up 5, right 7
down 7, left 3, up 6, right 2, down 4, left 4, up 4, right 3, down 4, left 5, up 4, right 3, down 6, left 3, up 5, right 2
down 7, left 3, up 6, right 2, down 4, left 4, up 4, right 3, down 4, left 5, up 4, right 3, down 6, left 3, up 5, right 3
down 7, left 3, up 6, right 2, down 4, left 4, up 4, right 3, down 4, left 5, up 4, right 3, down 6, left 3, up 5, right 4
down 7, left 3, up 6, right 2, down 4, left 4, up 4, right 3, down 4, left 5, up 4, right 3, down 6, left 3, up 5, right 5
down 7, left 3, up 6, right 2, down 4, left 4, up 4, right 3, down 4, left 5, up 4, right 3, down 6, left 3, up 5, right 6
down 7, left 3, up 6, right 2, down 4, left 4, up 4, right 3, down 4, left 5, up 4, right 3, down 6, left 3, up 5, right 7
There is no way for white to win the second testcase.
For the final testcase, white has a king, and white can capture the single black piece, and land on any of the five spaces below the piece.
题目解析
这题是一个搜索题,用深度优先搜索可以解决。
题目中的游戏规则比较复杂,一定要仔细阅读。最初没有注意到,普通白子不能向下走,浪费了很多时间。
使用回溯法可以避免保存状态。
程序
C++
#include <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;
// check whether (x,y) is a legal location
bool legal(int x, int y) {
return (x>=) && (x<) && (y>=) && (y<);
}
/**
board: 8x8 array representing the game board
isKing: whether white piece is king
wx: white piece's location on x axis
wy: white piece's location on y axis
lastDir: direction of last move, valid value are -1, 0, 1, 2, 3, -1 represents initial move
numBlack: number of black pieces on board
*/
int countWin(char board[][], bool isKing, int wx, int wy, int lastDir, int numBlack) {
int count = ; // game over, white piece win
if(numBlack == ) return ; int dir[][] = { {,}, {,-}, {-,}, {,} };
int bx, by; // black piece to the left, right or upwards
int sx, sy; // landing square if(!isKing) {
// cannot go downwards, possible directions: 0, 1, 2
for(int d=; d<; d++) { bx = wx + dir[d][];
by = wy + dir[d][];
sx = wx + dir[d][] * ;
sy = wy + dir[d][] * ; if(board[bx][by]=='x' && legal(sx, sy) && board[sx][sy]=='.') {
if(sx == ) isKing = true;
board[bx][by] = '.';
numBlack--;
count += countWin(board, isKing, sx, sy, d, numBlack);
// backtrack
board[bx][by] = 'x';
numBlack++;
}
}
}
else {
for(int d=; d<; d++) {
if((d== && lastDir==) || (d== && lastDir==) ||
(d== && lastDir==) || (d== && lastDir==)) {
continue;
}
bx = by = -;
// white king can go at least 1 step, at most 6 steps
for(int skipBefore=; skipBefore<=; skipBefore++) {
int tx = wx + dir[d][] * skipBefore;
int ty = wy + dir[d][] * skipBefore;
if(legal(tx, ty) && board[tx][ty]=='x') {
bx = tx;
by = ty;
break;
}
}
//cout << bx << ' ' << by << endl;
if(!legal(bx, by)) continue;
for(int skipAfter=; skipAfter<=; skipAfter++) {
int tx = bx + dir[d][] * skipAfter;
int ty = by + dir[d][] * skipAfter;
if(legal(tx, ty) && board[tx][ty]=='.') {
board[bx][by] = '.';
numBlack--;
int C = countWin(board, isKing, tx, ty, d, numBlack);
count += C;
// backtrack
board[bx][by] = 'x';
numBlack++;
}
else {
break;
} }
}
} return count;
} int main() {
int T;
cin >> T;
for(int t=; t<T; t++) {
char board[][];
for(int l=; l<; l++) {
cin >> board[l];
} // check whether white piece is king or not
bool isKing = false;
for(int c=; c<; c++) {
if(board[][c] == 'o') isKing = true;
} // locate white piece
int wx, wy, numBlack = ;
for(int l=; l<; l++) {
for(int c=; c<; c++) {
if(board[l][c] == 'o') {
wx = l;
wy = c;
board[l][c] = '.';
}
else if(board[l][c] == 'x') {
numBlack++;
}
}
}
cout << countWin(board, isKing, wx, wy, -, numBlack) << endl;
getchar();
}
return ;
}
博客中的文章均为 meelo 原创,请务必以链接形式注明 本文地址
IEEEXtreme 10.0 - Checkers Challenge的更多相关文章
- IEEEXtreme 10.0 - Inti Sets
这是 meelo 原创的 IEEEXtreme极限编程大赛题解 Xtreme 10.0 - Inti Sets 题目来源 第10届IEEE极限编程大赛 https://www.hackerrank.c ...
- IEEEXtreme 10.0 - Painter's Dilemma
这是 meelo 原创的 IEEEXtreme极限编程比赛题解 Xtreme 10.0 - Painter's Dilemma 题目来源 第10届IEEE极限编程大赛 https://www.hack ...
- IEEEXtreme 10.0 - Mysterious Maze
这是 meelo 原创的 IEEEXtreme极限编程大赛题解 Xtreme 10.0 - Mysterious Maze 题目来源 第10届IEEE极限编程大赛 https://www.hacker ...
- IEEEXtreme 10.0 - Ellipse Art
这是 meelo 原创的 IEEEXtreme极限编程大赛题解 Xtreme 10.0 - Ellipse Art 题目来源 第10届IEEE极限编程大赛 https://www.hackerrank ...
- IEEEXtreme 10.0 - Counting Molecules
这是 meelo 原创的 IEEEXtreme极限编程大赛题解 Xtreme 10.0 - Counting Molecules 题目来源 第10届IEEE极限编程大赛 https://www.hac ...
- IEEEXtreme 10.0 - Game of Stones
这是 meelo 原创的 IEEEXtreme极限编程大赛题解 Xtreme 10.0 - Game of Stones 题目来源 第10届IEEE极限编程大赛 https://www.hackerr ...
- IEEEXtreme 10.0 - Playing 20 Questions with an Unreliable Friend
这是 meelo 原创的 IEEEXtreme极限编程大赛题解 Xtreme 10.0 - Playing 20 Questions with an Unreliable Friend 题目来源 第1 ...
- IEEEXtreme 10.0 - Full Adder
这是 meelo 原创的 IEEEXtreme极限编程大赛题解 Xtreme 10.0 - Full Adder 题目来源 第10届IEEE极限编程大赛 https://www.hackerrank. ...
- IEEEXtreme 10.0 - N-Palindromes
这是 meelo 原创的 IEEEXtreme极限编程大赛题解 Xtreme 10.0 - N-Palindromes 题目来源 第10届IEEE极限编程大赛 https://www.hackerra ...
随机推荐
- vmvare安装ubuntu后
配置源: http://wiki.ubuntu.org.cn/%E6%BA%90%E5%88%97%E8%A1%A8#Trusty.2814.04.29.E7.89.88.E6.9C.AC 清理工作: ...
- LINUX安全加固操作
1.禁止Ctrl-Alt-Delete组合键重启系统 vi /etc/inittab #ca::ctrlaltdel:/sbin/shutdown -t3 -r now 如果还存在下面的文件,则需要注 ...
- openstack日志模块
一.简单的python日志模块介绍 http://www.cnblogs.com/tuzkee/p/3974193.html http://blog.csdn.net/jgood/article/de ...
- CSS中em,rem的区别
首先这两个单位一般用在移动端 不太清楚得求证 再记录 1.em w3cschool中给出css中尺寸单位如下: 单位 描述 % 百分比 in 英寸 cm 厘米 mm 毫米 em 1em 等于当前的字 ...
- css table-border
1.table上设边框,td上设边框: <style> table{border-right:1px solid #F00;border-bottom:1px solid #F00} ta ...
- Flex布局之box-flex
box-flex的写法比flex的写法要复杂一些,兼容性的前缀要多带几个,真希望有一天flex布局能够纳入w3c标准啊! <!DOCTYPE html> <html> < ...
- 动态加载js和css的jquery plugin
一个简单的动态加载js和css的jquery代码,用于在生成页面时通过js函数加载一些共通的js和css文件. //how to use the function below: //$.include ...
- [php]http响应头解析
(Status-Line) HTTP/ OK Cache-Control no-cache Content-Length Content-Type image/gif Date Sat, Dec :: ...
- 【CodeForces】708 B. Recover the String 数学构造
[题目]B. Recover the String [题意]找到一个串s,满足其中子序列{0,0}{0,1}{1,0}{1,1}的数量分别满足给定的数a1~a4,或判断不存在.数字<=10^9, ...
- 【CF343D】 Water Tree(树链剖分)
题目链接 树剖傻逼题,练练手好久没写树剖了. 查询忘记\(pushdown\)抓了好久虫.. 全文手写,一遍过... #include <cstdio> const int MAXN = ...