답안 #403402

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
403402 2021-05-13T06:51:24 Z CursedCode Boat (APIO16_boat) C++14
컴파일 오류
0 ms 0 KB
#include "boat.h"
#include<bits/stdc++.h>

using namespace std;
long long a[1000];
long long dp[1000] = {0};
long long boat(int n){
	dp[1] = 1;
	a[n + 1] = 1000000000;
	for(int i = 1;i <= n + 1;i++){
		for(int j = i - 1;j >= 1;j--){
			if(a[j] < a[i]) dp[i] += dp[j];
		}
		dp[i] += 1;
	}
	return dp[n + 1] - 1;
}

Compilation message

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