From Hours to 360ms: Over-Engineering a Sudoku Solution

2025-02-08

The author tackles a Sudoku puzzle aiming for the highest possible GCD among the nine 9-digit numbers formed by the rows. Initial attempts using the Z3 solver failed to find a solution within hours. The author then employed several optimization strategies: mathematical analysis to reduce the search space, a BFS algorithm, and iterative improvements to the `is_good` function, transitioning from HashSet to bitset and finally leveraging SIMD for vectorized computation. Multithreading and refined thread synchronization reduced the solution time from hours to 360ms, achieving over 1600x speedup. While a hardcoded answer proved fastest, the article showcases how even seemingly simple arithmetic problems offer significant performance gains through meticulous algorithmic optimization.

Read more
Development

Minecraft Server Site Selection Sparks Voting System Debate

2024-12-21

A Minecraft server's site selection problem led to an in-depth discussion of different voting systems. The initially used plurality voting system resulted in the least popular option winning due to the "spoiler effect." Subsequently, instant-runoff voting was tried, which solved some problems, but violated monotonicity when candidates changed. The author further introduces the Borda method and Arrow's impossibility theorem, ultimately recommending score voting and approval voting as superior options because they satisfy the three conditions of Arrow's impossibility theorem: unanimity, non-dictatorship, and independence of irrelevant alternatives.

Read more