Editorial for COI '10 #5 Lovci
Submitting an official solution before solving the problem yourself is a bannable offence.
Let's observe the board:
xxooxx
xxxxxx
xxxxxx
xxxxxx
xxxxxx
xxxxxx
Let's separate black and white cells (one bishop always jumps by white cells, and the other by black cells):
x o x x o x
x x x x x x
x x x x x x
x x x x x x
x x x x x x
x x x x x x
Let's rotate the board by
xx x
xxxo xxo
xxxxxx xxxxx
xxxx xxxxx
xx xxx
x
We can sort rows by length, by which the same set of cells will still be visible from every cell:
xxxxxx xxxxx
xxxx xxxxx
xxxo xxx
xx xxo
xx x
x
Same is applied to columns:
xxxxxx xxxxx
xxxx xxxxx
xxxo xxx
xx xxo
xx x
x
Now, we have to solve the upper left sorted board. I.e. for every
Let's take a look at
If those assumptions are true, then the first row from
- Jump from starting row to first for in
. - Jump to every column from
in any order, but in the end, jump to the first column in (first row from can see every column from ). - Jump to every other row from
(first row from can see every row from ).
It can be seen that a bishop has to jump to the same column in step 2 twice (if starting column is the first one from
Further: For
Implementation:
- Choose a subset of columns that contains the starting column of bishop in every way. For every row calculate how many points is there left.
- Choose the best row from which bishop can jump to every column in subset.
- Choose the starting row.
- From now on, we add one by one the best row in which bishop can jump from first column from subset. (Curator's note: This grammar sucks. Feel free to open a ticket.)
For
Comments