for(int i=0; i<1000; i++) {
GameState game = NativeGameState.createAdvancedGame();
for(int p=0; p<players.length; p++) {
players[p].solve(game);
if(game.getState()==State.WIN) wins[p]++;
game.restart();
}
}
for(int w : wins) System.out.print("\t\t"+w);
System.out.println("\n"+(System.currentTimeMillis()-t0));