PUZZLE IBM-298
The queens and kings problem
IBM Research · Ponder This · 2023-02
IBM Ponder This #298 · February 2023
In the eight queens problem, eight queens must be placed on a chessboard in such a way that no pair of queens is currently threatening one another. One possible solution to the eight queens problem is this:

In any solution to the eight queens problem, all the empty squares on the chessboard are threatened by at least two queens. We refer to a square that is threatened by exactly two queens as safe. These squares are marked here in green:

For the given configuration of queens, there is only one way to put four kings on the safe squares such that no two kings are currently threatening one another:

With apologies to standard chess notation, we can describe the locations of the queens and kings on this board using the following two lists of coordinates:
[(0, 2), (1, 5), (2, 3), (3, 1), (4, 7), (5, 4), (6, 6), (7, 0)]
[(1, 7), (3, 0), (7, 1), (7, 3)]
For
[(0, 1), (1, 9), (2, 7), (3, 5), (4, 3), (5, 12), (6, 10), (7, 13), (8, 11), (9, 6), (10, 4), (11, 2), (12, 0), (13, 8)]
Is it possible to find arrangement of
[(0, 0), (1, 10), (2, 0), (4, 0), (4, 2), (9, 2), (9, 9), (11, 0), (11, 7), (11, 11), (13, 5), (13, 9), (13, 11), (13, 13)]
There are 41 possible arrangements of
Your goal: Find a placement of
Supply your answer in a list of the queen positions, as in the above example.
A bonus "*" will be given for finding a placement of
Solution
Best opened after a real attemptTo be added.