There is a 4*4 cells table. We paint cells by the following rule: any unpainted cell has an adjacent side with a painted cell, and any painted cell has an adjacent side with an unpainted cell. For example, for n = 12 (1 - painted, 0- not painted)
1 1 0 1
0 1 1 1
1 1 1 0
1 0 1 1
Now the question. Is it possible to paint 14 instead of 12 cells? (I think that we can't)