Skip to content

Commit 8bb402f

Browse files
committed
Last minute touchups
1 parent 99d0c4e commit 8bb402f

File tree

8 files changed

+313
-111
lines changed

8 files changed

+313
-111
lines changed

Rakefile

+41
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,47 @@ end
216216
task :brute, :slug do |t, args|
217217
config['problems'].each do |slug, cfg|
218218
if !args[:slug] || args[:slug] == slug
219+
print "Brute-forcing #{ slug }"
220+
require slug_dir.call(slug, 'problem.rb')
221+
cls = ProgComp.const_get(slug.capitalize)
222+
problem = cls.new
223+
224+
unless problem.respond_to?(:brute)
225+
puts "...skipped"
226+
end
227+
228+
require 'stringio'
229+
input = StringIO.new("1\n" + problem.enum_for(:generate, {}).to_a.join("\n"))
230+
231+
require 'timeout'
232+
begin
233+
Timeout::timeout(5) do
234+
problem.brute(input){}
235+
end
236+
237+
# It... finished.
238+
puts
239+
raise Problem::GenerationError, "#{ slug.capitalize } finished a brute-force. Bad."
240+
rescue Timeout::Error
241+
# Good, it failed! Let's check how badly
242+
if problem.bruted * 24 > 0.25
243+
# It would have gotten a quarter of the way on this one; that's not a good sign
244+
puts
245+
raise Problem::GenerationError, "#{ slug.capitalize } needs more umph!"
246+
end
247+
puts "...success (#{problem.bruted * 24})"
248+
end
219249
end
220250
end
221251
end
252+
253+
task :solve, :slug do |t, args|
254+
raise "Slug required" unless args[:slug]
255+
require slug_dir.call(args[:slug], 'problem.rb')
256+
cls = ProgComp.const_get(args[:slug].capitalize)
257+
problem = cls.new
258+
259+
problem.solve(STDIN) do |s|
260+
puts s
261+
end
262+
end

config.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ test_files: 50
33

44
# Number of test cases to include per file (including edge cases)
55
test_cases:
6-
devel: 20
6+
devel: 200
77
prod: 200
88

99
semester: spring2013
@@ -18,7 +18,8 @@ problems:
1818
- runner_andrew.py
1919

2020
fitness:
21-
runners: []
21+
runners:
22+
- runner_andrew.py
2223

2324
shaving:
2425
runners:

spring2013/fitness/problem.rb

+13-7
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
module ProgComp
77
class Fitness < Problem
88
def generate args
9-
depth = 3..6
9+
depth = 5..6
1010
breadth = 2..3
11-
value = 50..10000
11+
value = 1..100000
1212

1313
talents = {}
1414
talents[1] = [0, 0]
@@ -31,7 +31,7 @@ def generate args
3131

3232
gen.call(1, 1)
3333

34-
yield "%d %d" % [talents.size, rand(3..leaf/2)]
34+
yield "%d %d" % [talents.size, rand(3..leaf/3)]
3535
talents.each do |id, data|
3636
yield "%d %d %d" % [id, *data]
3737
end
@@ -98,19 +98,25 @@ def solve stdin
9898
end
9999

100100
if __FILE__ == $0
101-
ProgComp::Talent.new do |p|
101+
ProgComp::Fitness.new do |p|
102102
p.solve(DATA) do |s|
103103
puts s
104104
end
105105
end
106106
end
107107
__END__
108-
1
108+
2
109109
7 2
110-
1 0 0
110+
1 0 10
111111
2 1 10
112112
3 1 10
113113
4 2 30
114114
5 2 25
115115
6 3 20
116-
7 3 20
116+
7 3 15
117+
5 2
118+
1 0 10
119+
2 1 10
120+
3 1 50
121+
4 3 5
122+
5 3 15

spring2013/fitness/runner_andrew.py

+69
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,69 @@
1+
"""
2+
Solution to the fitness problem in UPE's Spring 2013 programming competition
3+
4+
@Author Andrew Karnani
5+
@Version 3/24/13
6+
"""
7+
8+
9+
import sys
10+
11+
12+
def readProblem():
13+
tree = {}
14+
leaves = set()
15+
16+
skills, choose = map(int, sys.stdin.readline().split(" "))
17+
18+
19+
for i in range(skills):
20+
skill = sys.stdin.readline()[:-1].split(" ")
21+
22+
tree[skill[0]] = (skill[1], int(skill[2]))
23+
leaves.add(skill[0])
24+
leaves.discard(skill[1])
25+
26+
27+
return tree, leaves, choose
28+
29+
def solve(tree, leaves, choose, used):
30+
31+
chosen = []
32+
33+
for i in range(choose):
34+
result = []
35+
for leaf in leaves:
36+
result.append((leaf, value(leaf,tree, used)))
37+
38+
skill = max(result, key=lambda x: x[1])[0]
39+
40+
chosen.append(skill)
41+
42+
while skill != '0':
43+
used.add(skill)
44+
skill = tree[skill][0]
45+
46+
return chosen
47+
48+
49+
def value(skill, tree, used):
50+
if skill not in tree:
51+
return 0
52+
53+
if tree[skill][0] == 0:
54+
return 0 if skill in used else tree[skill][1]
55+
56+
return (0 if skill in used else tree[skill][1]) + value(tree[skill][0], tree, used)
57+
58+
59+
60+
61+
62+
num = int(sys.stdin.readline())
63+
64+
for i in range(num):
65+
tree, leaves, choose = readProblem()
66+
chosen = solve(tree, leaves, choose, set())
67+
print " ".join(sorted(chosen, key=lambda x: int(x)))
68+
69+

spring2013/shaving/problem.rb

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ module ProgComp
44
class Shaving < Problem
55

66
def generate args
7-
days = rand(10..100)
7+
days = rand(50..100)
88
obs = days * 5 / 6 + rand(1..10)
9-
const = rand(1000..3000)
9+
const = rand(100000..300000)
1010
# require 'prime'
1111
# const = Prime.take(20)[10..-1].sample
1212

1313
yield "%d %d %d" % [days, const, obs]
14-
obs.times.map { [rand(2..days), rand(100..const)] }.sort_by(&:first).each do |d, h|
14+
obs.times.map { [rand(2..days), rand(10000..const)] }.sort_by(&:first).each do |d, h|
1515
yield "%d %d" % [d, h]
1616
end
1717
end

spring2013/shaving/runner_vera.py

+109
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
1+
"""
2+
Solution to 2013 Prog. Comp. shave problem
3+
Brute force solution, checks every possibility
4+
Days are indexed from 1
5+
6+
usage: python shave.py input.txt
7+
8+
Author: Vera Axelrod
9+
Date: March 23, 2013
10+
"""
11+
12+
import fileinput
13+
import sys
14+
from collections import defaultdict
15+
16+
# read in the information
17+
def readInput():
18+
result = []
19+
obligations = defaultdict(lambda: 0)
20+
seenInfo = False
21+
M = -1
22+
n = -1
23+
24+
probs = int(sys.stdin.readline())
25+
for i in range(0, probs):
26+
line = sys.stdin.readline()
27+
L = line.rstrip('\n').split(' ')
28+
29+
if(len(L) == 3):
30+
# add the old stuff
31+
if (seenInfo):
32+
result.append([n, M, obligations])
33+
obligations = defaultdict(lambda: 0)
34+
35+
n = int(L[0])
36+
M = int(L[1])
37+
obs = int(L[2])
38+
#ignore L[2] which is the number of obligations
39+
seenInfo = True
40+
41+
for j in range(0, obs):
42+
line = sys.stdin.readline()
43+
L = line.rstrip('\n').split(' ')
44+
45+
if(len(L) == 2):
46+
obligations[int(L[0])] += int(L[1])
47+
48+
# add the last input if there was any input at all
49+
if(seenInfo):
50+
result.append([n, M, obligations])
51+
52+
return result
53+
54+
55+
56+
def shave(n, M, obligations):
57+
# create the set of all binary strings
58+
binaryStrings = [];
59+
upper = pow(2, n-1)
60+
61+
for i in range(0, upper):
62+
binary = bin(i)
63+
x = binary[2:len(binary)]
64+
65+
# need to pad the front with zeros
66+
while ( len(x) < (n-1) ):
67+
x = '0' + x
68+
69+
# we ignore the zeroth day so put an 'x' there
70+
x = 'x1' + x
71+
binaryStrings.append(x)
72+
73+
# python can actually go smaller than this, but lets assume the problem wont
74+
bestHappiness = -sys.maxint
75+
76+
# try all possible combinations of shaving/not shaving
77+
for x in binaryStrings:
78+
happiness = 0
79+
hairLength = 0
80+
# skip the first day (1)
81+
for d in range(2,n+1):
82+
# shave today
83+
if (x[d] == '1'):
84+
happiness -= M
85+
hairLength = 0
86+
else:
87+
hairLength = hairLength + 1
88+
89+
if ( d in obligations ):
90+
happiness -= obligations[d] * hairLength
91+
92+
if (happiness >= bestHappiness):
93+
bestHappiness = happiness
94+
bestStrategy = x
95+
96+
# print out the best strategy
97+
output = ''
98+
for day in range(1,n+1):
99+
if (bestStrategy[day] == '1'):
100+
output = output + str(day)
101+
output += ' '
102+
103+
print output.strip()
104+
105+
106+
107+
result = readInput()
108+
for problem in result:
109+
shave(problem[0], problem[1], problem[2])

0 commit comments

Comments
 (0)