I am trying to find the best solution for radar placement problem with using multi objective simulated annealing algorithm. So there is an area (in real map) and I want to put minimum count of radar as possible with the maximum area coverage. I am using multi-objective simulated annealing algorithm to do that and in small maps it works well, but when the map size increases the solution size also increases and updating it for better solutions. It becames hard to find a good solution at the end and the calculation times increases a lot.
The problem is here. What should I do to reduce the solutin size? For example my real world map is 250x500 and the solution size is 250x500 = 125000. It is hard to seperate radars randomly at on solution with this high size, it doesn't work well and consumes a lot of time. How can I reduce that solution size? For example, there are 125k different possible place to put a radar, but if it become 1k or 10k different place, it becomes easier to get a good result.