제출 #201766

#제출 시각아이디문제언어결과실행 시간메모리
201766Leonardo_PaesLanguages (IOI10_languages)C++17
56 / 100
720 ms11744 KiB
#include <bits/stdc++.h>
#include "lang.h"
#include "grader.h"

using namespace std;

const int maxl = 60, maxn = 67000;

int qtd[maxl], mark[maxn];

map<int,int> m[maxl];

void excerpt(int *e){
    memset(qtd, 0, sizeof qtd);
    memset(mark, 0, sizeof mark);

    int ans = 0;

    for(int i=0; i<100; i++){
        if(mark[e[i]]) continue;
        mark[e[i]]++;
        for(int j=0; j<56; j++){
            if(m[j][e[i]]) qtd[j]++;
            if(qtd[j] > qtd[ans]) ans = j;
        }
    }

    int a = language(ans);

    for(int i=0; i<100; i++){
        m[a][e[i]] = 1;
    }
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...