# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
359178 | 2021-01-26T12:04:06 Z | mohamedsobhi777 | Languages (IOI10_languages) | C++14 | 1 ms | 364 KB |
#include <bits/stdc++.h> #include "lang.h" #include "grader.h" using namespace std; const int Lang = 56; int lang[Lang + 1][66000]; int *glo; int freq[66000]; long long calc(int lan) { for (int i = 0; i < 100; ++i) freq[glo[i]] = 0; for (int i = 0; i < 100; ++i) freq[glo[i]]++; long long ret = 0; for (int i = 1; 10 * i < 65535; ++i) { long long diff = lang[lan][i] - freq[i]; ret += abs(diff); } return ret; } void excerpt(int *ex) { glo = ex; long long simi = 1e18; int wnr = 0; for (int i = 1; i <= Lang; ++i) { double y = calc(i); if (y < simi) { simi = y; wnr = i; } } assert(wnr && wnr <= Lang); int k = language(wnr); assert(wnr); int z = language(wnr); for (int i = 0; i < 100; ++i) { lang[z][ex[i]]++; } }
Compilation message
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 364 KB | Hacked. |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 364 KB | Hacked. |