Advertisement
Alaricy

Учёт минус слов Урок 6.

Oct 10th, 2022 (edited)
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 4.60 KB | None | 0 0
  1. #include <algorithm>
  2. #include <iostream>
  3. #include <set>
  4. #include <string>
  5. #include <utility>
  6. #include <vector>
  7.  
  8. using namespace std;
  9.  
  10. const int MAX_RESULT_DOCUMENT_COUNT = 5;
  11.  
  12. string ReadLine() {
  13.     string s;
  14.     getline(cin, s);
  15.     return s;
  16. }
  17.  
  18. int ReadLineWithNumber() {
  19.     int result = 0;
  20.     cin >> result;
  21.     ReadLine();
  22.     return result;
  23. }
  24.  
  25. vector<string> SplitIntoWords(const string& text) {
  26.     vector<string> words;
  27.     string word;
  28.     for (const char c : text) {
  29.         if (c == ' ') {
  30.             if (!word.empty()) {
  31.                 words.push_back(word);
  32.                 word.clear();
  33.             }
  34.         } else {
  35.             word += c;
  36.         }
  37.     }
  38.     if (!word.empty()) {
  39.         words.push_back(word);
  40.     }
  41.  
  42.     return words;
  43. }
  44.  
  45. struct Document {
  46.     int id;
  47.     int relevance;
  48. };
  49.  
  50. class SearchServer {
  51. public:
  52.     void SetStopWords(const string& text) {
  53.         for (const string& word : SplitIntoWords(text)) {
  54.             stop_words_.insert(word);
  55.         }
  56.     }
  57.  
  58.     void AddDocument(int document_id, const string& document) {
  59.         const vector<string> words = SplitIntoWordsNoStop(document);
  60.         documents_.push_back({document_id, words});
  61.     }
  62.  
  63.     vector<Document> FindTopDocuments(const string& raw_query) const {
  64.         const QueryContent query_words = ParseQuery(raw_query);
  65.         auto matched_documents = FindAllDocuments(query_words);
  66.  
  67.         sort(matched_documents.begin(), matched_documents.end(),
  68.              [](const Document& lhs, const Document& rhs) {
  69.                  return lhs.relevance > rhs.relevance;
  70.              });
  71.         if (matched_documents.size() > MAX_RESULT_DOCUMENT_COUNT) {
  72.             matched_documents.resize(MAX_RESULT_DOCUMENT_COUNT);
  73.         }
  74.         return matched_documents;
  75.     }
  76.  
  77. private:
  78.     struct DocumentContent {
  79.         int id = 0;
  80.         vector<string> words;
  81.     };
  82.     struct QueryContent {
  83.         set<string> pluswords;
  84.         set<string> minuswords;
  85.     };
  86.  
  87.     vector<DocumentContent> documents_;
  88.  
  89.     set<string> stop_words_;
  90.  
  91.     bool IsStopWord(const string& word) const {
  92.         return stop_words_.count(word) > 0;
  93.     }
  94.  
  95.     vector<string> SplitIntoWordsNoStop(const string& text) const {
  96.         vector<string> words;
  97.         for (const string& word : SplitIntoWords(text)) {
  98.             if (!IsStopWord(word)) {
  99.                 words.push_back(word);
  100.             }
  101.         }
  102.         return words;
  103.     }
  104.  
  105.     QueryContent ParseQuery(const string& text) const {
  106.         QueryContent query_words;
  107.         for (const string& word : SplitIntoWordsNoStop(text)) {
  108.             if (word[0]!='-') query_words.pluswords.insert(word);
  109.             else {
  110.                 query_words.minuswords.insert(word.substr(1));
  111.              }
  112.         }
  113.         return query_words;
  114.     }
  115.  
  116.     vector<Document> FindAllDocuments(const QueryContent query_words) const {
  117.         vector<Document> matched_documents;
  118.         for (const auto& document : documents_) {
  119.             const int relevance = MatchDocument(document, query_words);
  120.             if (relevance > 0) {
  121.                 matched_documents.push_back({document.id, relevance});
  122.             }
  123.         }
  124.         return matched_documents;
  125.     }
  126.  
  127.     static int MatchDocument(const DocumentContent& content, const QueryContent& query_words) {
  128.         if (query_words.pluswords.empty()) {
  129.             return 0;
  130.         }
  131.         set<string> matched_words;
  132.         for (const string& word : content.words) {
  133.             if (matched_words.count(word) != 0) {
  134.                 continue;
  135.             }
  136.             if (query_words.pluswords.count(word) != 0) {
  137.                 matched_words.insert(word);                
  138.             }
  139.             if (query_words.minuswords.count(word) != 0) {
  140.                 matched_words.clear();
  141.             }
  142.         }
  143.             return static_cast<int>(matched_words.size());
  144.         }
  145.     };
  146.  
  147. SearchServer CreateSearchServer() {
  148.     SearchServer search_server;
  149.     search_server.SetStopWords(ReadLine());
  150.  
  151.     const int document_count = ReadLineWithNumber();
  152.     for (int document_id = 0; document_id < document_count; ++document_id) {
  153.         search_server.AddDocument(document_id, ReadLine());
  154.     }
  155.  
  156.     return search_server;
  157. }
  158.  
  159. int main() {
  160.     const SearchServer search_server = CreateSearchServer();
  161.  
  162.     const string query = ReadLine();
  163.     for (const auto& [document_id, relevance] : search_server.FindTopDocuments(query)) {
  164.         cout << "{ document_id = "s << document_id << ", "
  165.              << "relevance = "s << relevance << " }"s << endl;
  166.     }
  167. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement