# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
869922 | 2023-11-06T10:37:10 Z | Matjaz | Languages (IOI10_languages) | C++14 | 10000 ms | 31524 KB |
#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; for (int l=3;l<=4;l++){ 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()); }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 10054 ms | 31524 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Execution timed out | 10030 ms | 31244 KB | Time limit exceeded |
2 | Halted | 0 ms | 0 KB | - |