답안 #503985

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
503985 2022-01-09T11:56:01 Z Abrar_Al_Samit 비밀 (JOI14_secret) C++17
컴파일 오류
0 ms 0 KB
#include "secret.h"
#include "bits\stdc++.h"
using namespace std;

vector<vector<int>>sp(1001, vector<int>(11));
void Init(int N, int A[]) {
  for(int i=0; i<N; ++i) {
    sp[i][0] = A[i];
  }
  for(int j=1; j<11; ++j) {
    for(int i=0; i+(1<<j)-1<N; ++i) {
      sp[i][j] = Secret(sp[i][j-1], sp[i+(1<<j)][j-1]);
    }
  }
}

int Query(int L, int R) {
  int len = R-L+1;
  int id = L;
  int ret = 0;
  for(int j=0; j<11; ++j) if(len>>j&1) {
    ret = Secret(ret, sp[id][j]);
    id += 1<<j;
  }
  return ret;
}

Compilation message

secret.cpp:2:10: fatal error: bits\stdc++.h: No such file or directory
    2 | #include "bits\stdc++.h"
      |          ^~~~~~~~~~~~~~~
compilation terminated.