Submission #1011523

# Submission time Handle Problem Language Result Execution time Memory
1011523 2024-06-30T14:54:19 Z awu Languages (IOI10_languages) C++11
0 / 100
2199 ms 262144 KB
// This is a complete and utter mess
#include <bits/extc++.h>
using namespace std;
#define unordered_map __gnu_pbds::gp_hash_table
 
#include "grader.h"
#include "lang.h"
 
int cnt = 0;
 
map<int, unordered_map<int, int>> chars;
map<array<int, 2>, unordered_map<int, int>> ngrams2;
map<array<int, 3>, unordered_map<int, int>> ngrams3;
map<array<int, 4>, unordered_map<int, int>> ngrams4;
map<array<int, 5>, unordered_map<int, int>> ngrams5;
map<array<int, 6>, unordered_map<int, int>> ngrams6;
int guess(vector<int> s) {
  if(cnt == 0) return rand() % 56;
  vector<double> scores(56);
  for(int i = 0; i < s.size(); i++) {
    for(auto p : chars[s[i]]) {
      scores[p.first] += 30;
    }
  }
  for(int i = 0; i < s.size() - 1; i++) {
    array<int, 2> ngram;
    for(int j = 0; j < 2; j++) {
      ngram[j] = s[i + j];
    }
    for(auto p : ngrams2[ngram]) {
      scores[p.first] += 13;
    }
  }
  for(int i = 0; i < s.size() - 2; i++) {
    array<int, 3> ngram;
    for(int j = 0; j < 3; j++) {
      ngram[j] = s[i + j];
    }
    for(auto p : ngrams3[ngram]) {
      scores[p.first] += 13;
    }
  }
  for(int i = 0; i < s.size() - 3; i++) {
    array<int, 4> ngram;
    for(int j = 0; j < 4; j++) {
      ngram[j] = s[i + j];
    }
    for(auto p : ngrams4[ngram]) {
      scores[p.first] += 16;
    }
  }
  for(int i = 0; i < s.size() - 4; i++) {
    array<int, 5> ngram;
    for(int j = 0; j < 5; j++) {
      ngram[j] = s[i + j];
    }
    for(auto p : ngrams5[ngram]) {
      scores[p.first] += 20;
    }
  }
  for(int i = 0; i < s.size() - 5; i++) {
    array<int, 6> ngram;
    for(int j = 0; j < 6; j++) {
      ngram[j] = s[i + j];
    }
    for(auto p : ngrams6[ngram]) {
      scores[p.first] += 21;
    }
  }
  // cout << "Max score: " << *max_element(scores.begin(), scores.end()) << endl;
  return max_element(scores.begin(), scores.end()) - scores.begin();
}
void process(int lang, vector<int> s) {
  for(int i = 0; i < s.size(); i++) {
    chars[s[i]][lang]++;
  }
  for(int i = 0; i < s.size() - 1; i++) {
    array<int, 2> ngram;
    for(int j = 0; j < 2; j++) {
      ngram[j] = s[i + j];
    }
    ngrams2[ngram][lang]++;
  }
  for(int i = 0; i < s.size() - 2; i++) {
    array<int, 3> ngram;
    for(int j = 0; j < 3; j++) {
      ngram[j] = s[i + j];
    }
    ngrams3[ngram][lang]++;
  }
  for(int i = 0; i < s.size() - 3; i++) {
    array<int, 4> ngram;
    for(int j = 0; j < 4; j++) {
      ngram[j] = s[i + j];
    }
    ngrams4[ngram][lang]++;
  }
  for(int i = 0; i < s.size() - 4; i++) {
    array<int, 5> ngram;
    for(int j = 0; j < 5; j++) {
      ngram[j] = s[i + j];
    }
    ngrams5[ngram][lang]++;
  }
  for(int i = 0; i < s.size() - 5; i++) {
    array<int, 6> ngram;
    for(int j = 0; j < 6; j++) {
      ngram[j] = s[i + j];
    }
    ngrams6[ngram][lang]++;
  }
  cnt++;
}
void excerpt(int *E) {
  vector<int> e(E, E + 100);
  process(language(guess(e)), e);
}

Compilation message

lang.cpp: In function 'int guess(std::vector<int>)':
lang.cpp:20:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   20 |   for(int i = 0; i < s.size(); i++) {
      |                  ~~^~~~~~~~~~
lang.cpp:25:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   25 |   for(int i = 0; i < s.size() - 1; i++) {
      |                  ~~^~~~~~~~~~~~~~
lang.cpp:34:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   34 |   for(int i = 0; i < s.size() - 2; i++) {
      |                  ~~^~~~~~~~~~~~~~
lang.cpp:43:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   43 |   for(int i = 0; i < s.size() - 3; i++) {
      |                  ~~^~~~~~~~~~~~~~
lang.cpp:52:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   52 |   for(int i = 0; i < s.size() - 4; i++) {
      |                  ~~^~~~~~~~~~~~~~
lang.cpp:61:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   61 |   for(int i = 0; i < s.size() - 5; i++) {
      |                  ~~^~~~~~~~~~~~~~
lang.cpp: In function 'void process(int, std::vector<int>)':
lang.cpp:74:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   74 |   for(int i = 0; i < s.size(); i++) {
      |                  ~~^~~~~~~~~~
lang.cpp:77:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   77 |   for(int i = 0; i < s.size() - 1; i++) {
      |                  ~~^~~~~~~~~~~~~~
lang.cpp:84:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   84 |   for(int i = 0; i < s.size() - 2; i++) {
      |                  ~~^~~~~~~~~~~~~~
lang.cpp:91:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   91 |   for(int i = 0; i < s.size() - 3; i++) {
      |                  ~~^~~~~~~~~~~~~~
lang.cpp:98:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   98 |   for(int i = 0; i < s.size() - 4; i++) {
      |                  ~~^~~~~~~~~~~~~~
lang.cpp:105:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
  105 |   for(int i = 0; i < s.size() - 5; i++) {
      |                  ~~^~~~~~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Runtime error 2129 ms 262144 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 2199 ms 262144 KB Execution killed with signal 9
2 Halted 0 ms 0 KB -