#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;
long long ret = 0;
for (int i = 0; i < 100; ++i)
{
ret += ++freq[glo[i]] * lang[lan][glo[i]];
}
return ret;
}
void excerpt(int *ex)
{
glo = ex;
long long simi = 0;
int wnr = 0;
for (int i = 0; i < Lang; ++i)
{
double y = calc(i);
if (y > simi)
{
simi = y;
wnr = i;
}
}
int z = language(wnr);
for (int i = 0; i < 100; ++i)
{
// lang[z][ex[i]]++;
lang[z][ex[i]] = min(lang[z][ex[i]] + 1, 9);
}
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
524 ms |
3084 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Partially correct |
514 ms |
3052 KB |
Output is partially correct - 62.12% |