# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
867634 | Matjaz | Languages (IOI10_languages) | C++14 | 10046 ms | 33104 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <stdlib.h>
#include <stdio.h>
#include <set>
#include <vector>
#include <algorithm>
using namespace std;
#include "grader.h"
#include "lang.h"
#define SZ 100
set<int> S[56];
int L = 56;
void excerpt(int *E) {
vector<int> sample;
long long a = 719;
long long b = 479001599;
int l = 6;
for (int i=0;i<100 - l + 1;i++){
int hash = 0;
for (int j=0;j<l;j++){
hash = (hash * a + E[i + j]) % b;
}
sample.push_back(hash);
}
int best_score = 0;
int best_guess = 0;
for (int i=0;i<L;i++){
int score = 0;
for (int j=0;j<sample.size();j++) score += S[i].count(sample[j]);
if (best_score < score){
best_score = score;
best_guess = i;
}
}
int target = language(best_guess);
S[target].insert(sample.begin(), sample.end());
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |