제출 #456172

#제출 시각아이디문제언어결과실행 시간메모리
456172fuad27동굴 (IOI13_cave)C++14
컴파일 에러
0 ms0 KiB
#include "cave.h"
#include<bits/stdc++.h>
using namespace std;
void exploreCave(int N) {
	int S[N+1];
	int test[N+1];
	for(int i = 0 ; i < N ; ++i) S[i] = 0, D[i] = i;
	int val = tryCombination(S);
	if(val == -1)
	{
		for(int i = 0 ; i < N ; ++i){
			S[i] = 1;
			test[i] = tryCombination(S);
			S[i] = 0;
		}
		}
		else{
			while(val != -1) {
				S[val] = !S[val];
				val = tryCombination(S);
			}
		}
	}
	answer(S, D);
}

컴파일 시 표준 에러 (stderr) 메시지

cave.cpp: In function 'void exploreCave(int)':
cave.cpp:7:41: error: 'D' was not declared in this scope
    7 |  for(int i = 0 ; i < N ; ++i) S[i] = 0, D[i] = i;
      |                                         ^
cave.cpp: At global scope:
cave.cpp:24:8: error: expected constructor, destructor, or type conversion before '(' token
   24 |  answer(S, D);
      |        ^
cave.cpp:25:1: error: expected declaration before '}' token
   25 | }
      | ^