# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
72137 | BOJ 8481 (#118) | 마법 다우징 (FXCUP3_magic) | C++17 | 3 ms | 380 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "dowsing.h"
#include <cstdlib>
using namespace std;
void FindTreasure(int N) {
int a[2], idx=0;
int v[50]={0};
for(int i=1;i<=N;i++){
if(Detect(i,i)==1) a[idx++]=i;
}
if(idx==0){
int tmp;
if(N%2==0){
for(int i=0;i<N/2;i++){
do{
tmp=rand()%(N/2);
} while(v[tmp] != 0);
if(Detect(2*tmp+1,2*tmp+2)==1) break;
v[tmp]=1;
}
int j=(tmp==0?3:1);
if(Detect(2*tmp+1,j)==1) Report(2*tmp+1,2*tmp+1);
else Report(2*tmp+2,2*tmp+2);
}
else{
for(int i=0;i<(N+1)/2;i++){
do{
tmp=rand()%(N/2);
} while(v[tmp] != 0);
if(i==(N-1)/2) break;
if(tmp!=(N-1)/2){
if(Detect(2*tmp+1,2*tmp+2)==1) break;
}
else{
if(Detect(2*tmp,2*tmp+1)==1) break;
}
v[tmp]=1;
}
int j=(tmp==0?3:1);
if(tmp!=(N-1)/2){
if(Detect(2*tmp+1,j)==1) Report(2*tmp+1,2*tmp+1);
else Report(2*tmp+2,2*tmp+2);
}
else{
if(Detect(2*tmp,j)==1) Report(2*tmp,2*tmp);
else Report(2*tmp+1,2*tmp+1);
}
}
}
else{
int i;
for(i=1;i==a[0]||i==a[1];i++);
if(Detect(a[0],i) == 1) Report(a[0],a[1]);
else Report(a[1],a[0]);
}
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |