이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <stdio.h>
#include <stdlib.h>
#include <algorithm>
#include "cave.h"
/*
#define MAX_N 5000
#define MAX_CALLS 70000
#define fail(s, x...) do { \
fprintf(stderr, s "\n", ## x); \
exit(1); \
} while(0)
/* Symbol obfuscation
#define N koala
#define realS kangaroo
#define realD possum
#define inv platypus
#define num_calls echidna
static int N;
static int realS[MAX_N];
static int realD[MAX_N];
static int inv[MAX_N];
static int num_calls;
void answer(int S[], int D[]) {
int i;
int correct = 1;
for (i = 0; i < N; ++i)
if (S[i] != realS[i] || D[i] != realD[i]) {
correct = 0;
break;
}
if (correct)
printf("CORRECT\n");
else
printf("INCORRECT\n");
for (i = 0; i < N; ++i) {
if (i > 0)
printf(" ");
printf("%d", S[i]);
}
printf("\n");
for (i = 0; i < N; ++i) {
if (i > 0)
printf(" ");
printf("%d", D[i]);
}
printf("\n");
exit(0);
}
int tryCombination(int S[]) {
int i;
if (num_calls >= MAX_CALLS) {
printf("INCORRECT\nToo many calls to tryCombination().\n");
exit(0);
}
++num_calls;
for (i = 0; i < N; ++i)
if (S[inv[i]] != realS[inv[i]])
return i;
return -1;
}
*/
void exploreCave(int N)
{
int poz[N+5]={0},link[N+5];
std::pair <int,int>c[N+5];
bool sta[N+5]={false};
int vede=tryCombination(poz);
for(int qwerty=0;qwerty<N;++qwerty)
{
int b=0,e=N-1;
while(b<=e)
{
int mij=(b+e)/2;
for(int i=b;i<=mij;++i)
{
if(sta[i]==false)
poz[i]=1;
}
int vedeacum=tryCombination(poz);
for(int i=b;i<=mij;++i)
{
if(sta[i]==false)
poz[i]=0;
}
if(vedeacum==qwerty&&vede!=qwerty||vedeacum!=qwerty&&vede==qwerty)
e=mij-1;
else
b=mij+1;
}
c[qwerty].first=b;
c[qwerty].second=qwerty;
sta[b]=true;
if(vede==qwerty)
{
poz[b]=1;
vede=tryCombination(poz);
}
}
sort(c,c+N);
for(int i=0;i<N;++i)
link[i]=c[i].second;
answer(poz,link);
}
/*
int init() {
int i, res;
FILE *f = fopen("cave.in", "r");
if (!f)
fail("Failed to open input file.");
res = fscanf(f, "%d", &N);
for (i = 0; i < N; ++i) {
res = fscanf(f, "%d", &realS[i]);
}
for (i = 0; i < N; ++i) {
res = fscanf(f, "%d", &realD[i]);
inv[realD[i]] = i;
}
num_calls = 0;
return N;
}
int main() {
int N;
N = init();
exploreCave(N);
printf("INCORRECT\nYour solution did not call answer().\n");
return 0;
}*/
컴파일 시 표준 에러 (stderr) 메시지
cave.cpp:14:1: warning: "/*" within comment [-Wcomment]
14 | /* Symbol obfuscation
|
cave.cpp: In function 'void exploreCave(int)':
cave.cpp:96:32: warning: suggest parentheses around '&&' within '||' [-Wparentheses]
96 | if(vedeacum==qwerty&&vede!=qwerty||vedeacum!=qwerty&&vede==qwerty)
| ~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~
# | 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... |