# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
472089 | nickmet2004 | Hidden Sequence (info1cup18_hidden) | C++11 | 437 ms | 524292 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#include "grader.h"
using namespace std;
bool ask(int x , int y , int c){
vector<int> v;
while(x--)v.emplace_back(c);
while(y--)v.emplace_back(c^1);
return isSubsequence(v);
}
vector<int> findSequence(int n){
int n0 = 0 , n1 = 0;
vector<int> ans;
for(int i =1; i <= n; ++i){
if(!ask(i , 0, 0)){
n0 = i - 1;
n1 = n - n0;
break;
}
if(!ask(i,0,1)){
n1 = i - 1;
n0 = n - n1;
break;
}
}
int a0 =0 ,b0 =0, a1=n0 , b1 = n1;
int q= 0;
for(int i =1; i <= n; ++i){
if(a0 + b1 <= n/2){
if(!ask(a0 + 1 , b1 , 0)) q = 1;
else q = 0;
} else {
if(!ask(a1 + 1 , b0 , 1)) q = 0;
else q = 1;
}
if(q){
a1++;b1--;
}else{
a0++; b0--;
}
ans.emplace_back(q);
}
return ans;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |