이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "grader.h"
using namespace std;
map<int,int>mp[55];
int C[55];
void excerpt(int *E) {
pair<double,int>mx={0,0};
for(int i=0;i<55;i++){
if(C[i]==0)continue;
int c=0;
for(int j=0;j<100;j++){
c+=mp[i][E[j]];
}
mx=max(mx,{(double)c/C[i],i});
}
language(0);
return;
int l=language(mx.second);
C[l]++;
for(int i=0;i<100;i++){
mp[l][E[i]]++;
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |