# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
527973 | tabr | Martian DNA (IOI16_dna) | C++17 | 12 ms | 384 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#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
Compilation message (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... |