제출 #199701

#제출 시각아이디문제언어결과실행 시간메모리
199701FieryPhoenix말 (IOI15_horses)C++11
컴파일 에러
0 ms0 KiB
#include <iostream>
#include <vector>
#include <algorithm>
#include <cmath>
#include <cstdio>
#include <map>
#include <queue>
#include <set>
#include <iomanip>
#include <deque>
#include <cassert>
#include <ctime>
#include <cstring>
#include <cstdlib>
#include <chrono>
#include <ctime>
#include <random>
#include <stack>
#include <unordered_set>
#include <unordered_map>
#include <iterator>
#include <climits>
#include <horse.h>
using namespace std;

mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
typedef long long ll;
typedef long double ld;
#define INF 2001001001
#define MOD 1000000007

int worth[15];

int init(int N, int X[], int Y[]){
  for (int i=N-1;i>=0;i--)
    worth[i]=X[i]*max(Y[i],worth[i+1]);
  return worth[0];
}

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

horses.cpp:23:10: fatal error: horse.h: No such file or directory
 #include <horse.h>
          ^~~~~~~~~
compilation terminated.