Submit | All submissions | Best solutions | Back to list |
Problem hidden on 2012-06-16 10:32:46 by :D
CHECK2 - Check |
The objective of this program is given a configuration of the board to find out if the king is in check or not.
Chess is a two-player board game played on a chessboard, a square-checkered board with 64 squares arranged in an eight-by-eight grid. It is one of the world's most popular games, played by millions of people worldwide at home, in clubs, online, by correspondence, and in tournaments.
The objective of this program is given a configuration of the board to find out if the king is in check or not.
Each player begins the game with sixteen pieces: one king, one queen, two rooks, two knights, two bishops, and eight pawns, each of these types of pieces moving differently. Pieces are used to attack and capture the opponent's pieces. The object of the game is to checkmate the opponent's king by placing it under threat of capture ("check") which cannot be avoided.
Input
The first line of input contains the number of test cases. In each case the first line has two numbers representing the amount of white and black pieces. Subsequent lines contain a letter that represents the piece and its corresponding coordinate. Consider that the king is always in first line.
Output
he output consists of a single line answering whether or not the King is in check, consider that your pieces are white and it is your turn.
Example
Input: 3
1 1
K f 8
K a 1
1 2
K f 8
B e 7
K e 2
1 2
K h 8
B f 6
K a 1 Output: No Check
Check
No Check
Added by: | Paulo Costa |
Date: | 2012-01-17 |
Time limit: | 1s |
Source limit: | 50000B |
Memory limit: | 1536MB |
Cluster: | Cube (Intel G860) |
Languages: | All except: ASM64 |
Resource: | EACH/USP - Brazilian ICPC Training Camp, Jan-Feb/2012 |
hide comments
2012-03-25 21:47:35 :D
Ok, i tried to make sense of this problem and I really cannot. No matter how I try to interpret it, it makes no sense. Is B a Bishop? Why isn't there a check in third test case? In what order are the pieces given (white or black first)? Explain the 2nd and 3rd test cas. I would ask to clarify, but there are little chances of that. It should rather be hidden. UPDATE: Problem will remain hidden until I can get some clarification on what exactly is going on here :) Last edit: 2012-05-11 19:49:55 |
|
2012-03-16 08:04:16 :D
I assume this should be a point of reference: http://en.wikipedia.org/wiki/Algebraic_chess_notation I will try to check it in a day or two. |
|
2012-03-12 02:02:58 Pranay
what does K and B stand for? |