제출 #342386

#제출 시각아이디문제언어결과실행 시간메모리
342386MilosMilutinovicCave (IOI13_cave)C++14
컴파일 에러
0 ms0 KiB
/**
 *  author: milos
 *  created: 02.01.2021 04:44:44
**/
#include "dream.h"
#include <bits/stdc++.h>

using namespace std;

void exploreCave(int n) {
  vector<int> p;
  for (int i = 0; i < n; i++) {
    p.push_back(0);
  }
  int x = tryCombination(p);
  vector<int> ans;
  if (x == -1) {
    for (int i = 0; i < n; i++) {
      p[i] = 1;
      ans.push_back(tryCombination(p));
      p[i] = 0;
    }
  }
  answer(p, ans);  
}

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

cave.cpp:5:10: fatal error: dream.h: No such file or directory
    5 | #include "dream.h"
      |          ^~~~~~~~~
compilation terminated.