제출 #125562

#제출 시각아이디문제언어결과실행 시간메모리
125562tutis캥거루 (CEOI16_kangaroo)C++17
6 / 100
2071 ms376 KiB
/*input 4 2 3 */ #pragma GCC optimize ("O3") #include <bits/stdc++.h> using namespace std; typedef long long ll; typedef long double ld; const ll modulo = 1000000007; int sgn(ll x) { if (x < 0) return -1; if (x > 0) return 1; return 0; } ll f(int n, int a, int b, int s) { if (a == b) return 0; if (n == 2) { if (sgn(b - a) != s) return 0; else return 1; } ll ret = 0; for (int c = 1; c <= n; c++) { if (sgn(b - c) == s) { ret += f(n - 1, a - (a > b), c - (c > b), -s); } } ret %= modulo; return ret; } int main() { int n, a, b; cin >> n >> a >> b; ll ans = f(n, a, b, 1) + f(n, a, b, -1); ans %= modulo; cout << ans << "\n"; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...