Ant Colony Optimization algorithm solving Google HashCode 2020 online elimination problem
The problem statement can be found here
The solution is based on Ant Colony Optimization algorithm with additional mutations.
bash -c "git clone https://github.com/Wector1/ant_colony_optimization.git && \
cd ant_colony_optimization && \
cmake -B build && \
cd build && \
make && \
./main"
Program accepts data through the standard input and outputs the solution to the standard output. Alternatively, you can specify the input and output files using the following command:
./main <input_file >output_file