博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Pat1128:N Queens Puzzle
阅读量:5307 次
发布时间:2019-06-14

本文共 2717 字,大约阅读时间需要 9 分钟。

1128. N Queens Puzzle (20)

时间限制
300 ms
内存限制
65536 kB
代码长度限制
16000 B
判题程序
Standard
作者
CHEN, Yue

The "eight queens puzzle" is the problem of placing eight chess queens on an 8×8 chessboard so that no two queens threaten each other. Thus, a solution requires that no two queens share the same row, column, or diagonal. The eight queens puzzle is an example of the more general N queens problem of placing N non-attacking queens on an N×N chessboard. (From Wikipedia - "Eight queens puzzle".)

Here you are NOT asked to solve the puzzles. Instead, you are supposed to judge whether or not a given configuration of the chessboard is a solution. To simplify the representation of a chessboard, let us assume that no two queens will be placed in the same column. Then a configuration can be represented by a simple integer sequence (Q1, Q2, ..., QN), where Qi is the row number of the queen in the i-th column. For example, Figure 1 can be represented by (4, 6, 8, 2, 7, 1, 3, 5) and it is indeed a solution to the 8 queens puzzle; while Figure 2 can be represented by (4, 6, 7, 2, 8, 1, 9, 5, 3) and is NOT a 9 queens' solution.

  
Figure 1
  
Figure 2

Input Specification:

Each input file contains several test cases. The first line gives an integer K (1 < K <= 200). Then K lines follow, each gives a configuration in the format "N Q1 Q2 ... QN", where 4 <= N <= 1000 and it is guaranteed that 1 <= Qi <= N for all i=1, ..., N. The numbers are separated by spaces.

Output Specification:

For each configuration, if it is a solution to the N queens problem, print "YES" in a line; or "NO" if not.

Sample Input:
48 4 6 8 2 7 1 3 59 4 6 7 2 8 1 9 5 36 1 5 2 6 4 35 1 3 5 2 4
Sample Output:
YESNONOYES 思路 N皇后问题,只不过题目仅要求判断是否是同一行和同一对角线。 对于每一个输入的数nums[i]。 1.判断是否和前面的皇后棋子是否在同一行,即输入的第i个数和前i-1个数是否相同。 2.判断是否在同意对角线上,即第i个数和前i-1个数的斜率是否相同,即abs(nums[i] - nums[k]) == abs(i - k) ( 0 <= k < i)是否成立。 代码
#include
#include
#include
using namespace std;int main(){ int K; while(cin >> K) { for(int i = 0;i < K;i++) { int N; cin >> N; vector
nums(N); bool isSolution = true; for(int j = 0;j < N;j++) { cin >> nums[j]; for(int k = 0;k < j;k++) { if(nums[k] == nums[j] || abs(nums[j] - nums[k]) == abs(j - k)) { isSolution = false; break; } } } if(isSolution) cout << "YES" << endl; else cout << "NO" << endl; } }}

 

转载于:https://www.cnblogs.com/0kk470/p/7725577.html

你可能感兴趣的文章
如何有效表达自己的想法
查看>>
ORA-02050故障诊断一例
查看>>
mysql sql灵活运用
查看>>
linux 查看并终止进程
查看>>
android控制控制的显示顺序
查看>>
无法识别的属性“targetFramework”。请注意属性名称区分大写和小写。错误解决的方法...
查看>>
SuiteScript 2.0 Error: SSS_INVALID_SRCH_FILTER_EXPR_TYPE
查看>>
Web前端从入门到精通-10 css简介——盒模型2
查看>>
滚动条
查看>>
Tomcat
查看>>
Ajax 完整教程
查看>>
JAVA随机数集锦
查看>>
项目数据分析师CPDA印章
查看>>
代码的抽象三大原则
查看>>
Nobody Wonder Girls 罗马文歌词
查看>>
beego 连接postgres
查看>>
监控系统状态
查看>>
delphi listbox 使用
查看>>
MySQL 数据库 -- 数据操作
查看>>
PHP 事件机制(2)
查看>>