-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsolver3.rb
executable file
·142 lines (103 loc) · 2.77 KB
/
solver3.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
#!/usr/bin/ruby
file_name = ARGV[0] ||= "b_read_on.txt"
@starting_score = 0
@startedAt = Time.now.to_i
@shuffle_indexes = [0,0]
@shuffle_factor = 0
def writeFile file, ret, score, libs
libs = libs.map{|l| l[0]}.join(" ")
File.open("out/#{file}_#{score}.a", "w") { |out|
out.write "#{ret.size}\n"
out.write ret.inject(""){|m,l| m + "#{l[0]} #{l[1]}\n#{l[2].join(" ")}\n"}
}
File.open("out/_best_#{file}.0", "w") { |out|
out.write "#{score}\n"
out.write libs
}
File.open("out/_best_#{file}.#{@startedAt}", "w") { |out|
out.write "#{score}\n"
out.write libs
}
end
def processBooks books, max, scores
books.map do |book|
[book, scores[book]]
end.sort_by!{|e| e[1]}.reverse[0..max-1].inject([]) do |sum, e|
if e[1] > 0
scores[e[0]] = 0
@finalScore += e[1]
sum << e[0]
else
return sum
end
end
end
def processLib head, books, daysLeft, scores
numOfBooks, signUp, perDay = head
return [signUp, []] if signUp >= daysLeft
processedBooks = processBooks(books, (daysLeft-signUp)*perDay, scores)
[signUp, processedBooks]
end
def shuffle(libs, size)
@shuffle_factor = (((x=rand(size))+1) / (rand(x)+1)).round
@shuffle_factor.times {
@shuffle_indexes = [rand(@shuffle_low_index), rand(size)]
do_swap(libs)
}
libs
end
def do_swap(libs)
bak = libs[@shuffle_indexes[0]]
libs[@shuffle_indexes[0]] = libs[@shuffle_indexes[1]]
libs[@shuffle_indexes[1]] = bak
libs
end
def initSort(libs, file)
sorted_libs = []
File.open("out/_best_#{file}.0", "r") { |input|
rows = input.read.split("\n")
@starting_score = rows.shift.to_i
indexes = rows.shift.split(" ").map &:to_i
indexes.each_with_index do |target_index, index|
sorted_libs[index] = libs[target_index]
end
} rescue return libs.shuffle
sorted_libs
end
numB, numL, numD = nil
bookScore = []
File.open("input/#{file_name}", "r") { |input|
rows = input.read.split("\n")
numB, numL, numD = rows.shift.split(" ").map &:to_i
bookScore_orig = rows.shift.split(" ").map &:to_i
@shuffle_low_index = [numL, numD].min
id = 0
libs = []
while rows.size > 0
libs << [id, rows.shift.split(" ").map(&:to_i), rows.shift.split(" ").map(&:to_i)]
id += 1
end
libs_best = initSort(libs, file_name)
while true do
@finalScore = 0
bookScore = bookScore_orig.dup
libs = libs_best.dup
daysLeft = numD
ret = []
shuffle(libs, numL).each do |lib|
took, books = processLib(lib[1], lib[2], daysLeft, bookScore)
daysLeft -= took
ret << [lib[0], books.size, books] if books.size > 0
break if daysLeft <= 0
id += 1
end
if @finalScore > @starting_score
writeFile(file_name, ret, @finalScore, libs)
@starting_score = @finalScore
@shuffle_low_index = libs.size
libs_best = libs
puts "#{@finalScore}: #{file_name} @ #{@shuffle_factor}"
$stdout.flush
end
end
}