제출 #595351

#제출 시각아이디문제언어결과실행 시간메모리
595351Hacv16Uplifting Excursion (BOI22_vault)C++17
컴파일 에러
0 ms0 KiB
#include<bits/stdc++.h>
#include<art.h>
using namespace std;

typedef long long ll;
typedef pair<int, int> pii;

const int MAX = 2e6 + 15;
const int INF = 0x3f3f3f3f;
const int MOD = 1e9 + 7;

#define pb push_back
#define sz(x) (int) x.size()
#define fr first
#define sc second
#define mp make_pair
#define all(x) x.begin(), x.end()
#define dbg(x) cout << #x << ": " << "[ " << x << " ]\n"

void solve(int n){
	vector<int> v(n);
	iota(all(v), 1);
	
	int bad = publish(v);
	
	for(int i = 0; i < n; i++){ 		//for each i find its place
		for(int j = 0; j < n; j++){		//test all possible spots
			if(i == j) continue;
			swap(v[i], v[j]);
			
			int cur = publish(v);
			
			if(cur < bad) bad = cur; 	//closer to ans
			else swap(v[i], v[j]); 		//swap back
		}
	}
	
	answer(v);
}

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

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