이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int P = (int)1e9 + 7;
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
int n, s, f;
cin >> n >> s >> f;
s--;
f--;
vector<int> prev(n + 1, 0);
prev[0] = 1;
for (int x = 0; x < n; x++) {
vector<int> dp(n + 1, 0);
int req = (x > s) + (x > f);
for (int comp = req; comp <= n; comp++) {
// create
if (comp + 1 <= n) {
if (x == s || x == f) (dp[comp + 1] += prev[comp]) %= P;
else (dp[comp + 1] += 1LL * (comp + 1 - req) * prev[comp] % P) %= P;
}
// merge
if (comp >= 2 && x != s && x != f) {
(dp[comp - 1] += 1LL * (comp - 1) * prev[comp] % P) %= P;
}
// append, only possible for endpoints
if (comp >= 1 && (x == s || x == f)) {
(dp[comp] += prev[comp]) %= P;
}
}
swap(dp, prev);
}
cout << prev[1] << '\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... |