-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathtask.go
217 lines (175 loc) · 5.09 KB
/
task.go
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
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
package main
import (
"bufio"
"fmt"
"os"
"strconv"
"strings"
)
// SearchLimit лимит на количество ролевантных документов
const SearchLimit = 5
// SearchDoc ролевантный документ
type SearchDoc struct {
id,
cnt int
}
// Search поисковая структура
type Search struct {
DocIndex map[string]map[int]int
QueryIndex []*SearchDoc
Result []int
}
func main() {
var nd, nq, i int
input, err := getInputData()
if err != nil {
showError(err)
}
// получаем количество документов
input.Scan()
nd, err = strconv.Atoi(input.Text())
if err != nil {
return
}
s := &Search{
DocIndex: make(map[string]map[int]int),
}
// собираем индексы по документам
for i = 1; i <= nd; i++ {
input.Scan()
s.CreateDocIndex(strings.Split(input.Text(), " "), i)
}
// получаем количество запросов
input.Scan()
nq, err = strconv.Atoi(input.Text())
if err != nil {
return
}
// обрабатываем запросы
for i = 0; i < nq; i++ {
input.Scan()
s.InitRelIndex(nq)
s.InitResultData(SearchLimit)
// релевантность документа по слову
s.CreateQueryIndex(strings.Split(input.Text(), " "))
// получаем результат
fmt.Println(strings.Trim(fmt.Sprint(s.GetResultQuery()), "[]"))
}
}
func testMain(docs []string, queries []string) [][]int {
s := &Search{
DocIndex: make(map[string]map[int]int),
}
for i := 0; i < len(docs); i++ {
s.CreateDocIndex(strings.Split(docs[i], " "), i+1)
}
var res = make([][]int, 0, len(queries))
for i := 0; i < len(queries); i++ {
s.InitRelIndex(len(docs))
s.InitResultData(SearchLimit)
s.CreateQueryIndex(strings.Split(queries[i], " "))
res = append(res, s.GetResultQuery())
}
return res
}
// InitResultData инициализация ответа ролевантных докментов
func (s *Search) InitResultData(size int) {
s.Result = make([]int, 0, size)
}
// InitRelIndex инициализация индекса ролевантных докментов
func (s *Search) InitRelIndex(size int) {
s.QueryIndex = make([]*SearchDoc, 0, size)
}
// CreateDocIndex обработка слов и построение индекса по документу
func (s *Search) CreateDocIndex(words []string, docID int) {
for i := 0; i < len(words); i++ {
s.AddDocIndex(docID, words[i])
}
}
// AddDocIndex добавление индекса слова
func (s *Search) AddDocIndex(docID int, word string) {
if _, ok := s.DocIndex[word]; !ok {
s.DocIndex[word] = map[int]int{docID: 0}
}
s.DocIndex[word][docID]++
}
// CreateQueryIndex обработка слов и построение индекса запроса
func (s *Search) CreateQueryIndex(words []string) {
mapIdx := make(map[int]int)
uniqueWords := make(map[string]struct{})
for j := 0; j < len(words); j++ {
// только уникальные слова
if _, ok := uniqueWords[words[j]]; !ok {
// если в документах есть такое слово
if docCnt, find := s.DocIndex[words[j]]; find {
for k, v := range docCnt {
if _, yes := mapIdx[k]; !yes {
s.QueryIndex = append(s.QueryIndex, &SearchDoc{id: k, cnt: v})
mapIdx[k] = len(s.QueryIndex) - 1
} else {
s.QueryIndex[mapIdx[k]].cnt += v
}
}
uniqueWords[words[j]] = struct{}{}
}
}
}
// сортируем
s.SortIndex()
}
// GetResultQuery результат первых 5ти документов (если ролевантность больше 0)
func (s *Search) GetResultQuery() []int {
for i := 0; i < len(s.QueryIndex); i++ {
if i >= SearchLimit {
break
}
s.Result = append(s.Result, s.QueryIndex[i].id)
}
return s.Result
}
// SortIndex сортировка документов (пузырьком)
func (s *Search) SortIndex() {
if len(s.QueryIndex) == 0 {
return
}
for i := 0; i < len(s.QueryIndex); i++ {
// больше 5ти не требуется
if i > SearchLimit {
break
}
// гоним максимальным значением вверх
for j := len(s.QueryIndex) - 1; j > i; j-- {
if s.QueryIndex[j-1].cnt < s.QueryIndex[j].cnt ||
(s.QueryIndex[j-1].cnt == s.QueryIndex[j].cnt && s.QueryIndex[j].id < s.QueryIndex[j-1].id) {
s.SwapResult(j-1, j)
}
}
}
}
// SwapResult идеоматический свап
func (s *Search) SwapResult(i, j int) {
s.QueryIndex[i], s.QueryIndex[j] = s.QueryIndex[j], s.QueryIndex[i]
}
// getInputData подготовка входных данных
func getInputData() (scan *bufio.Scanner, err error) {
var input *os.File
input, err = getInputFromFile()
if err != nil {
showError(err)
}
scanner := bufio.NewScanner(input)
scanner.Split(bufio.ScanLines)
return scanner, nil
}
// getInputFromFile получение ввода из файла
func getInputFromFile() (*os.File, error) {
file, err := os.Open("input.txt")
if err != nil {
return nil, err
}
return file, nil
}
// showError вывод ошибки
func showError(err interface{}) {
panic(err)
}