이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "cave.h"
using namespace std;
void exploreCave(int n){
vector<int>fnd(n,-1);
vector<int>kys(n,-1);
vector<int>stt(n,-1);
int s2[n],d[n];
memset(s2,-1,sizeof(s2));
memset(d,-1,sizeof(d));
for(int i=0;i<n;i++){
int s[n];
for(int j=0;j<n;j++){
if(d[j]!=-1){
s[j]=s2[j];
}else
s[j]=1;
}
int inp;
inp=tryCombination(s);
int st;
if(inp>i||inp==-1){
st=1;
}else{
st=0;
}
stt[i]=st;
int l=0,r=n-1;
while(l<=r){
int mid=l+(r-l)/2;
for(int j=l;j<=mid;j++){
if(d[j]!=-1){
s[j]=s2[j];
}else{
s[j]=st;
}
}
for(int j=mid+1;j<=r;j++){
if(d[j]!=-1){
s[j]=s2[j];
}else{
s[j]=!st;
}
}
inp=tryCombination(s);
int nst;
if(inp>i||inp==-1){
r=mid;
}else{
l=mid+1;
}
if(l==r){
fnd[i]=l;
d[l]=i;
s2[l]=st;
break;
}
}
}
answer(s2,d);
}
/***
8
5
3 1
7 0
6 4
0 5
5 7
*/
컴파일 시 표준 에러 (stderr) 메시지
cave.cpp: In function 'void exploreCave(int)':
cave.cpp:50:17: warning: unused variable 'nst' [-Wunused-variable]
50 | int nst;
| ^~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |