이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define F first
#define S second
#define pb push_back
#define all(a) a.begin(), a.end()
typedef long long ll;
typedef pair<int, int> ii;
const int N = 2000 + 5;
const int mod = 1e9 + 7;
int n, s, t;
int f[N][N];
void fix(int &a)
{
if(a >= mod) a -= mod;
if(a < 0) a += mod;
}
int dp(int i, int j)
{
if(j < 0) return 0;
if(i > n) return j == 1;
int &res = f[i][j];
if(~res) return res;
res = 0;
if(i == s || i == t)
res += dp(i + 1, j) + dp(i + 1, j + 1), fix(res);
else
{
res += 1LL * dp(i + 1, j - 1) * (j - 1) % mod, fix(res);
res += 1LL * dp(i + 1, j + 1) * (j + 1 - (i > s) - (i > t)) % mod, fix(res);
}
return res;
}
void solve()
{
cin >> n >> s >> t;
if(s > t) swap(s, t);
memset(f, -1, sizeof f);
cout << dp(1, 0);
}
signed main()
{
cin.tie(0)->sync_with_stdio(0);
int t = 1;
// cin >> t;
while(t--) solve();
return 0;
}
# | 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... |