이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#include "grader.h"
using namespace std;
int V[56][65536];
void excerpt(int *E)
{
int l=0,maxi=-1;
for(int j=0;j<56;j++)
{
int kind=0;
for(int i=0;i<100;i++)
{
if(V[j][E[i]])
{
kind++;
}
}
if(kind>maxi)
{
maxi=kind;
}
}
vector<int>N;
for(int j=0;j<56;j++)
{
int kind=0;
for(int i=0;i<100;i++)
{
if(V[j][E[i]])
{
kind++;
}
}
if(kind==maxi)
{
N.push_back(j);
}
}
srand(time(NULL));
int r=rand();
r%=(int)(N.size());
l=N[r];
int L=language(l);
for(int i=0;i<100;i++)
{
V[L][E[i]]++;
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |