Submission #595531

#TimeUsernameProblemLanguageResultExecution timeMemory
595531vh50Uplifting Excursion (BOI22_vault)C++17
Compilation error
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);
	}


}	

Compilation message (stderr)

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