이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int MOD = 1e9 + 7;
void add(int &x, int y) {
x += y;
while (x >= MOD) x -= MOD;
while (x < 0) x += MOD;
}
int mul(int x, int y) {
return (x * 1LL * y) % MOD;
}
const int N = 2e3 + 3;
int n, s, t;
int f[N][N];
void solve() {
cin >> n >> s >> t;
f[1][1] = 1;
for (int i = 1; i < n; ++i) {
for (int j = 1; j <= i; ++j) if (f[i][j]) {
if (i + 1 == s || i + 1 == t) {
add(f[i + 1][j], f[i][j]);
add(f[i + 1][j + 1], f[i][j]);
}
else {
int x = (i >= s) + (i >= t);
add(f[i + 1][j + 1], mul(f[i][j], j - x + 1));
add(f[i + 1][j - 1], mul(f[i][j], j - 1));
}
}
}
cout << f[n][1];
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
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... |