You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
567 B
21 lines
567 B
Program = Struct.new(:name, :weight, :disc)
|
|
|
|
programs = {}
|
|
ARGF.read.strip.split("\n").each do |line|
|
|
name, weight, above = line.scan(/(.+) \((\d+)\)(?: -> (.+))?/)[0]
|
|
programs[name] = Program.new(name, weight.to_i, (above || "").split(", "))
|
|
end
|
|
|
|
disc_weights = Hash.new {|h,k|
|
|
program = programs[k]
|
|
h[k] = if program.disc.empty?
|
|
program.weight
|
|
else
|
|
program.weight + program.disc.map {|x| h[programs[x].name] }.sum
|
|
end
|
|
}
|
|
|
|
root = "mkxke"
|
|
p programs[root].disc.map {|n| [n, disc_weights[n]] }
|
|
require "pry"; binding.pry
|