Entries from 2012-09-01 to 1 day

素振り

経路探索。途中まで解いていた # encoding: utf-8 class RouteMap def initialize(&block) @links = [] block.call(self) if block_given? end def link(station_a, station_b, time_cost=0) @links << Link.new(station_a, station_b, time_cost) end def r…