이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const long long MOD = (1e9)+7;
inline void add(int& a, int b) { a = (a + b) % MOD; }
inline int mul(int a, int b) { return 1ll * a * b % MOD; }
int n, s, e, dp[2001][2001];
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
cin >> n >> s >> e;
dp[0][0] = 1;
for(int i = 0; i < n-1; i++) for(int j = 0; j <= i; j++) {
if(i+1 == s || i+1 == e) { // automatically decrease j by 1, since s, e not counted
add(dp[i+1][j], dp[i][j]); // new cc
if(j) add(dp[i+1][j-1], mul(dp[i][j], j)); // append to start/end of some cc
} else {
add(dp[i+1][j+1], dp[i][j]); // new cc
if(j >= 2) add(dp[i+1][j-1], mul(dp[i][j], j*(j-1))); // join two non-empty cc
if(i+1 > s && j) add(dp[i+1][j-1], mul(dp[i][j], j)); // append to start's cc
if(i+1 > e && j) add(dp[i+1][j-1], mul(dp[i][j], j)); // append to end's cc
}
}
cout << dp[n-1][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... |