이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
/*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 time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |