제출 #721697

#제출 시각아이디문제언어결과실행 시간메모리
721697drdilyorEvent Hopping (BOI22_events)C++17
컴파일 에러
0 ms0 KiB
#include<bits/stdc++.h> #include"art.h" using namespace std; void solve(int n) { vector<int> ans(n); iota(ans.begin(), ans.end(), 1); int last = publish(ans); for (int i = 0; i < n; i++) { auto cur = ans; for (int j = 0; j < n-1; j++) { swap(cur[j], cur[j+1]); int inv = publish(cur); if (inv < last) { last = inv; ans = cur; } else cur = ans; } } answer(ans); }

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

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