# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
965127 | Darren0724 | Ancient Machine 2 (JOI23_ancient2) | C++17 | 29 ms | 1536 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "ancient2.h"
//#include "grader.cpp"
#include<bits/stdc++.h>
using namespace std;
const int lim=1002;
string Solve(int N) {
string ans;
while(ans.size()<N){
vector<int> a,b;
int sz=ans.size();
for(int i=0;i<sz;i++){
a.push_back(i+1);
b.push_back(i+1);
}
int last=-1;
int st=sz+1;
int p=1;
int bit=0;
while(sz+bit<N&&st+p*2-1<lim){
for(int i=0;i<p;i++){
a.push_back(st++);
b.push_back(st++);
}
bit++;
last=st;
p<<=1;
//cout<<bit<<' '<<st<<' '<<p<<' '<<lim<<endl;
}
while(a.size()<lim){
a.push_back(a.size());
b.push_back(b.size());
}
int r=Query(lim,a,b);
r-=sz;
string t;
for(int i=0;i<bit;i++){
if(r&1){
t.push_back('0');
}
else{
t.push_back('1');
}
r=(r-1)/2;
}
reverse(t.begin(),t.end());
ans+=t;
}
//cout<<ans<<endl;
return ans;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |