# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
187340 | Blagojce | Martian DNA (IOI16_dna) | C++11 | 16 ms | 504 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define fr(i, n, m) for(int i = (n); i <(m); i ++)
#define pb push_back
#define st frist
#define nd second
#define pq priority_queue
#define all(x) begin(x),end(x)
using namespace std;
typedef long long ll;
typedef long double ld;
typedef pair<int,int> pii;
ll const inf = 1e9;
ll const mod = 1e9 + 7;
ld const eps = 1e-9;
#include "dna.h"
mt19937 mt_rand(time(NULL));
/*
bool make_test(string s){
return true;
}*/
string analyse(int n, int t){
string ans = "";
int res = 0;
int err = 0;
while(err < 19 && res < n){
ans += (char)(mt_rand() % 2 + '0');
res ++;
if(make_test(ans)){
err = 0;
}
else{
err ++;
if(ans[res - 1] == '0') ans[res - 1] = '1';
else ans[res - 1] = '0';
}
}
if(res == n) return ans;
int l = res - err, r = res - 1;
while(l <= r){
int mid = (l + r) / 2;
if(make_test(ans.substr(0, mid + 1))){
res = mid + 1;
l = mid + 1;
}
else{
r = mid - 1;
}
}
ans.resize(res);
while(res < n){
if(make_test("0" + ans)){
ans = "0" + ans;
}
else{
ans = "1" + ans;
}
res ++;
}
return ans;
}/*
int main()
{
return 0;
}*/
컴파일 시 표준 에러 (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... |