Here is a description of a two player game with players plr1 and plr2 that is played on a n by n grid.
Players take turns filling cells in the grid. plr1 goes first and wins by completing a straight (not diagonal) line of n filled cells on the grid. plr2 wins if plr1 has not won before k cells have been filled.
Just to be clear, plr1 must complete the line n filled cells, that is to say, if plr2 were to complete such a line this would not result in a win for plr1. Additionally this line must be exactly of length n. It cannot exceed n for it to be a win.
Obviously, n < k < n2
The question is to find what the "fairest" ratio of k to n is for this type of game. By fair I mean a game that would been won approximately equally often by plr1 and plr2 assuming they were of relatively similar skill. Of course, this ratio may vary as n increases, so the question might also be stated as finding the fairest k for a given n.
Thanks
Nice question. Wanted to make this a comment, but don't have the reputation for it. A few questions, observations:
can plr1 ever win for any $k$ for $n > 2$? or maybe I understood the question incorrectly? Are the players alternating turns or do they take turns like plr1, plr2, plr2, plr1, plr1, plr2, plr2, plr1, plr1, etc.?