# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
591749 | ogibogi2004 | Languages (IOI10_languages) | C++14 | 5750 ms | 34752 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "grader.h"
#include "lang.h"
const int MAX_SYMBOLS = 65545;
const int MAX_LANGS=56;
using namespace std;
double freq[MAX_LANGS][MAX_SYMBOLS];
int seen[MAX_LANGS];
unordered_set<int>symbols[MAX_LANGS];
set<int>where_seen[MAX_SYMBOLS];
set<pair<int,int> >srichki[MAX_LANGS];
double weight[MAX_SYMBOLS];
int cnt_seen=0;
void excerpt(int *E)
{
double f1[MAX_SYMBOLS];
unordered_set<int>s1;
for(int i=0;i<100;i++)s1.insert(i);
for(int i=0;i<MAX_SYMBOLS;i++)f1[i]=0;
if(cnt_seen==0)
{
for(int i=0;i<MAX_SYMBOLS;i++)weight[i]=1;
}
for(int i=0;i<100;i++)
{
f1[E[i]-1]+=1.0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |