| { | |
| "name": "costas_array_n6__v5_nh", | |
| "problem_type": "costas_array", | |
| "params": { | |
| "n": 6 | |
| }, | |
| "prompt": "Find a Costas array of order 6: place 6 marks on an 6x6 grid, one per row and one per column, such that all 6*(5)/2 displacement vectors (dr, dc) between pairs of marks (with dc > 0) are pairwise distinct.\n\nReturn x as a list of 6 integers in 0..5, where x[c] is the row of the mark in column c (permutation), or state \"UNSATISFIABLE\" if no such array exists.", | |
| "satisfiable": true, | |
| "solution": { | |
| "x": [ | |
| 0, | |
| 1, | |
| 4, | |
| 3, | |
| 5, | |
| 2 | |
| ] | |
| }, | |
| "difficulty": { | |
| "solve_time_ms": 863.5, | |
| "search_space": 720, | |
| "num_variables": 6, | |
| "num_constraints": 7, | |
| "num_edges": -1, | |
| "backend": "pycsp", | |
| "solve_tier": "medium", | |
| "solve_pct_global": 56.58, | |
| "solve_pct_type": 16.67 | |
| }, | |
| "partial_assignment": null | |
| } | |