# |
Submission time |
Handle |
Problem |
Language |
Result |
Execution time |
Memory |
1030001 |
2024-07-21T15:39:13 Z |
Tob |
Languages (IOI10_languages) |
C++14 |
|
9305 ms |
262144 KB |
#include <bits/stdc++.h>
#include "grader.h"
#include "lang.h"
#define F first
#define S second
#define all(x) x.begin(), x.end()
#define pb push_back
#define FIO ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0)
using namespace std;
typedef long long ll;
typedef pair <int, int> pii;
typedef pair <ll, ll> pll;
typedef vector <int> sc;
const int siz = 100, le = 6, B = 31337, mod1 = 1e9 + 7, mod2 = 1e9 + 9;
map <pll, map <int, int> > m;
sc score(pll h, int c) {
sc res(56, 0);
for (auto i : m[h]) res[i.F] = i.S*c*c;
return res;
}
void excerpt(int* arr) {
sc res(56, 0);
for (int i = 0; i < siz; i++) {
pll h = {0, 0};
for (int j = i; j < min(siz, i+le); j++) {
h.F = (h.F*B+arr[j])%mod1;
h.S = (h.S*B+arr[j])%mod2;
sc d = score(h, j-i+1);
for (int k = 0; k < 56; k++) res[k] += d[k];
}
}
int x = 0;
for (int i = 1; i < 56; i++) if (res[i] > res[x]) x = i;
int y = language(x);
for (int i = 0; i < siz; i++) {
pll h = {0, 0};
for (int j = i; j < min(siz, i+le); j++) {
h.F = (h.F*B+arr[j])%mod1;
h.S = (h.S*B+arr[j])%mod2;
m[h][y]++;
}
}
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
9305 ms |
262144 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
9208 ms |
262144 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |