# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1117750 | vjudge1 | 캥거루 (CEOI16_kangaroo) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int main() {
#ifdef ONLINE_JUDGE
ifstream fin("kangaroo.in");
ofstream fout("kangaroo.out");
if (!fin or !fout) {
return 1;
}
#else
istream &fin = cin;
ostream &fout = cout;
#endif
int n, cs, cf, ans = 0;
fin >> n >> cs >> cf;
vector<int> route;
for (int i = 1; i <= n; i++) {
route.push_back(i);
}
do {
if (route.front() != cs or route.back() != cf) {
goto next;
}
for (int i = 1; i < n - 1; i++) {
int prev = route[i - 1], current = route[i], next = route[i + 1];
if ((prev < current and next >= current) or
(current < prev and current >= next)) {
goto next;
}
}
ans++;
next:
continue;
} while (ranges::next_permutation(route).found);
fout << ans << '\n';
#ifdef ONLINE_JUDGE
fout.close();
#endif
}