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.
28 lines
936 B
28 lines
936 B
9 years ago
|
regex = /(\w+): capacity (-?\d+), durability (\d+), flavor (-?\d+), texture (-?\d+), calories (\d+)/
|
||
|
ingredients = Hash[DATA.read.scan(regex).map {|name, *attrs| [name, attrs.map(&:to_i)] }]
|
||
|
# ingredients = {"Butterscotch" => [-1, -2, 6, 3, 8],
|
||
|
# "Cinnamon" => [2, 3, -2, -1, 3]}
|
||
|
max = 0
|
||
|
(0..100).each do |i|
|
||
|
(0..100-i).each do |j|
|
||
|
(0..100-i-j).each do |k|
|
||
|
l = 100-i-j-k
|
||
|
a = [i,j,k,l]
|
||
|
s = (0..3).map {|s|
|
||
|
ingredients.values.map {|x| x[s] }.zip(a).map {|x,y| x*y }.inject(:+)
|
||
|
}.map {|s|
|
||
|
[s,0].max
|
||
|
}.inject(:*)
|
||
|
if s > max &&
|
||
|
max = s
|
||
|
p a, s
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
end
|
||
|
__END__
|
||
|
Sugar: capacity 3, durability 0, flavor 0, texture -3, calories 2
|
||
|
Sprinkles: capacity -3, durability 3, flavor 0, texture 0, calories 9
|
||
|
Candy: capacity -1, durability 0, flavor 4, texture 0, calories 1
|
||
|
Chocolate: capacity 0, durability 0, flavor -2, texture 2, calories 8
|