Search found 1 match

by k9119911
Sun Jul 17, 2011 7:27 am
Forum: Volume 111 (11100-11199)
Topic: 11195 - Another n-Queen Problem
Replies: 24
Views: 20134

Re: 11195 - Another n-Queen Problem

Hi all

I used bitmask and backtracking to solve this problem and same for problem 750.
For problem 750, I got AC. Unfortunately, I got many WAs when solving this problem.
Below is my code, can anybody help me? Thanks in advance.

#include <stdio.h>
#include <string.h>

unsigned int board[20 ...

Go to advanced search