#include<bits/stdc++.h>
#include "grader.h"
using namespace std;
#define ll long long
#define pii pair<int,int>
#define pll pair<ll,ll>
#define fi first
#define se second
#define mp make_pair
#define pb push_back
#define eb emplace_back
#define all(vr) vr.begin(),vr.end()
#define vi vector<int>
#define vll vector<ll>
const int N = 1e5 + 10;
int in[60][N];
void excerpt(int E[])
{
ll id = 0, mx = -1;
for (int i = 0; i <= 55; ++i)
{
ll score = 0, d = 0;
for (int j = 0; j < 100; ++j)
if (in[i][E[j]]) score = max(score, ++d);
else d = 0;
if (score > mx) id = i, mx = score;
}
id = language(id);
for (int i = 0; i < 100; ++i) in[id][E[i]] = 1;
}
/*int main()
{
//freopen("ss.inp", "r", stdin);
ios::sync_with_stdio(false);
cin.tie(0);
return 0;
}*/
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
272 ms |
2840 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Partially correct |
263 ms |
2756 KB |
Output is partially correct - 52.28% |