Submission #574992

#TimeUsernameProblemLanguageResultExecution timeMemory
574992m_fenaisA Difficult(y) Choice (BOI21_books)C++14
Compilation error
0 ms0 KiB
#include <bits/stdc++.h>
#include <book.h>
using namespace std;
void solve(int N, int K, long long A, int S) {
  vector<int> v;
  for(int i=1; i<=N; i++){
    v.push_back(skim(i));
  }
  for(int i=0; i<v.size()-2; i++)
  {
    int cnt = v[i] + v[i+1] + v[i+2];
    if(cnt <= A*2 && cnt >= A)
    {
      vector<int> ans;
      ans.push_back(i+1);
      ans.push_back(i+2);
      ans.push_back(i+3);
      answer(ans);
    }
  }
  impossible();
}

Compilation message (stderr)

books.cpp:2:10: fatal error: book.h: No such file or directory
    2 | #include <book.h>
      |          ^~~~~~~~
compilation terminated.