제출 #595531

#제출 시각아이디문제언어결과실행 시간메모리
595531vh50Uplifting Excursion (BOI22_vault)C++17
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h>
#include "art.h"
using namespace std;
void solve(int N)
{
	vector <int> v;
	if(N <= 6)
	{
		v = {1, 2, 3, 4, 5, 6};
		while(publish(v))
		{
			next_permutation(v.begin(), v.end());
		}
		answer(v);
	}


}	

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

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