# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
527973 | tabr | Martian DNA (IOI16_dna) | C++17 | 12 ms | 384 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#ifdef tabr
#include "library/debug.cpp"
#else
#define debug(...)
#endif
#ifdef tabr
function<bool(string)> make_test;
#else
#include "dna.h"
#endif
mt19937 rng((unsigned int) chrono::steady_clock::now().time_since_epoch().count());
int rand_int(int a, int b) { // [a, b]
return uniform_int_distribution<int>(a, b)(rng);
}
string analyse(int n, int) {
string ans;
int lst = 0;
for (int i = 0; i < n; i++) {
int x = rand_int(0, 1);
string c = to_string(x);
if (make_test(ans + c)) {
lst = i + 1;
} else {
x ^= 1;
}
ans += to_string(x);
if (lst + 15 < i || i == n - 1) {
if (make_test(ans)) {
lst = i + 1;
continue;
}
debug(ans);
int low = lst;
int high = (int) ans.size();
while (high - low > 1) {
int mid = (high + low) >> 1;
if (make_test(ans.substr(0, mid))) {
low = mid;
} else {
high = mid;
}
}
ans.resize(low);
debug(ans);
break;
}
}
for (int i = (int) ans.size(); i < n; i++) {
int x = rand_int(0, 1);
string c = to_string(x);
if (!make_test(c + ans)) {
x ^= 1;
}
ans = to_string(x) + ans;
}
return ans;
}
#ifdef tabr
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
string s;
cin >> s;
make_test = [&](string p) {
if (p.size() > s.size()) {
return false;
}
for (int i = 0; i <= (int) (s.size() - p.size()); i++) {
if (p == s.substr(i, p.size())) {
return true;
}
}
return false;
};
cout << analyse((int) s.size(), 0) << '\n';
return 0;
}
#endif
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |