#pragma once #include "gamestate.hpp" class Solver { Game known; vector history = {}; vector sequence; public: Solver(int p_N, int p_M) : known({p_N, p_M}) { sequence = vector(p_N, -1); } // Guessing vector guess() { // TODO return {}; } // Clear what we already know Historic_guess clean(Historic_guess hist) { // The correct colors we know for(int n = 0; n < known.N; n++) { if(known.final_color(n) == hist.guess[n]) { hist.guess[n] = -1; hist.response[1] -= 1; } } // The out-of-place colors we know for(int n = 0; n < known.N; n++) { if(hist.guess[n] == -1) continue; for(int i = 0; i < known.N; i++) { if(i == n) continue; if(known.final_color(i) == hist.guess[n]) { hist.guess[n] = -1; hist.response[0] -= 1; } } } return hist; } // Specific reactions void if_not_here_then_nowhere(vector guess) { // Get all positions of these colors auto positions_of_colors = vector>(known.M, vector(0)); for(int n = 0; n < known.N; n++) if(guess[n] > -1) positions_of_colors[guess[n]].push_back(n); // If color can't be anywhere here, it can't be in the sequence for(int col = 0; col < known.M; col++) { int possible_count = 0; for(int n : positions_of_colors[col]) if(known.possible[n][col]) possible_count++; if(possible_count == 0 && positions_of_colors[col].size() > 0) known.empty_color(col); } } void not_here(vector guess) { for(int n = 0; n < known.N; n++) if(guess[n] > -1) known.cannot_be(n, guess[n]); } void empty(vector guess) { for(int col : guess) if(col > -1) known.empty_color(col); } bool extract_info(Historic_guess hist) { bool something_to_learn; // A bit of cleaning auto cleaned = clean(hist); vector guess = cleaned.guess; vector response = cleaned.response; // None of these colors are there if(response[0] == 0 && response[1] == 0) { empty(guess); something_to_learn = false; } // None at the right spot else if(response[1] == 0) { not_here(guess); something_to_learn = false; } // At least only on the right spot else if(response[0] == 0) { if_not_here_then_nowhere(guess); something_to_learn = true; } // Nonzero / nonzero else { something_to_learn = true; } return something_to_learn; } void learn(vector p_guess, vector p_response) { // Learn something new bool something_to_learn = extract_info({p_guess, p_response}); // Learn from previous guesses for(int i = 0; i < history.size(); i++) if(!extract_info(history[i])) { // If there is nothing left to learn from the guess history.erase(history.begin()+i); i--; } // Write to history if(something_to_learn) history.push_back({p_guess, p_response}); } void print() { known.print(); } };