제출 #12886

#제출 시각아이디문제언어결과실행 시간메모리
12886gs14004Languages (IOI10_languages)C++98
31 / 100
1463 ms39804 KiB
#include <map>
#include <algorithm>
#include <vector>
#include "lang.h"
#include "grader.h"
using namespace std;

map<long long,int> mp5, mp4;
vector<long long> v,u;
const int l = 5;
const int p = 69997;

void excerpt(int *E){
    int cnt[105] = {};
    v.clear();
    for (int i=0; i<96; i++) {
        long long px = 0, py = 0;
        for (int j=0; j<l; j++) {
            if(j != l-1) py = p * py + E[i+j];
            px = p * px + E[i+j];
        }
        map<long long,int> ::iterator it = mp5.lower_bound(px);
        if(it != mp5.end()) cnt[(*it).second]++;
        it = mp4.lower_bound(py);
        if(it != mp4.end()) cnt[(*it).second]++;
        v.push_back(px);
        u.push_back(py);
    }
    int mv = (int)(max_element(cnt,cnt+56) - cnt);
    int t = language(mv);
    for (int i=0; i<v.size(); i++) {
        mp5[v[i]] = t;
        mp4[u[i]] = t;
    }
}

컴파일 시 표준 에러 (stderr) 메시지

lang.cpp: In function 'void excerpt(int*)':
lang.cpp:31:20: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
     for (int i=0; i<v.size(); i++) {
                   ~^~~~~~~~~
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...