Preparing NOJ
Jake and Sully are playing around with a chessboard one night after working with their avatars all
day. They decide it would be interesting to place some rooks on the chessboard in a way that no rook
can threaten another rook. Since rooks move along rows and columns, this means two rooks may not
be on the same row or column. Your goal is to write a program to determine whether any rooks are
threatened.
Chessboards are 8x8 boards with positions between (1,1) and (8,8). The input begins with the
number of chess boards. Each chessboard is on a separate line and begins with the number of rooks,
followed by the column and row positions of each rook.
For each chessboard, your program should output the words ”SAFE” or ”NOT SAFE” on a
single line.
2
3 1 1 2 6 8 8
2 2 3 1 3
SAFE
NOT SAFE
undefined
本题由旧版NOJ导入,来源:Internet