← Back to game

Power Grid

A gold power plant sits somewhere on the board, and a handful of buildings need to be connected to it — but you only have enough wire for a fraction of the empty cells between them. Tap a cell to lay a wire, tap a wire to pull it back up, and watch the whole network glow green the instant current can actually flow from the plant to a building.

Every stage is solvable with wire to spare if you route efficiently. The challenge is resisting the urge to build three separate direct lines when one shared trunk with short branches would get every building powered for less.


How to Play


About This Game

Power Grid is a resource-constrained pathfinding puzzle: unlike a maze where you're looking for any valid route, here every wire you place is a cost you can't get back for free, and connecting three separate buildings independently is almost always more expensive than finding the one shared route that serves all of them. The game never tells you the "optimal" answer — it just gives you a budget tight enough that careless placement won't clear the stage, and generous enough that a genuinely efficient route always will.

Because buildings themselves are always conductive — you never spend a wire on the destination tile, only on the empty cells leading up to it — the last stretch of any branch is effectively free, which subtly rewards planning long trunks that end as close as possible to multiple buildings at once.


Why We Built It

Real electrical and network infrastructure design is fundamentally a Steiner tree problem — connect a set of required points using the least total wire — and it's a genuinely interesting optimization challenge even in miniature. We wanted a puzzle that let players feel that "aha, I can share this segment" moment without needing any background in graph theory to get there. The visual feedback of watching the network glow green as soon as a path completes does most of the teaching for free.

We kept the connection rule as simple as possible on purpose — any two adjacent non-empty cells conduct, no orientation or tile type to think about — because Circuit Repair, elsewhere on this site, already covers the rotation-puzzle version of "connect the power." Power Grid is the placement-and-budget version of the same underlying idea.


How It Works

Every stage defines a plant position, a set of building positions, and a wire budget computed from a reasonably efficient hand-planned route with a small safety margin built in. Connectivity is recalculated after every tap using a flood fill from the plant through any chain of adjacent non-empty cells — wires, the plant, and buildings all conduct equally, so a partially built network lights up incrementally as it grows rather than only at the moment of completion.

Placing a wire only costs budget when it turns an empty cell into a wire cell; removing a wire immediately refunds that budget, so there's no penalty for backtracking out of a route that turned out to be inefficient. The stage is marked complete the instant every building is present in the flood-fill's reachable set, regardless of how much budget remains unused.


Tips & Strategy


Ideas for Improvement

Play Game