이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <cstring>
#include <vector>
#include <algorithm>
#include <deque>
#include <set>
#include <utility>
#include <array>
#pragma GCC optimize("Ofast,unroll-loops")
#pragma GCC target("avx2,tune=native")
using namespace std;
#define ALL(x) x.begin(), x.end()
#define ShinLena cin.tie(nullptr)->sync_with_stdio(false);
using ll = long long;
#define N 2005
const ll M = 1000000007;
int n, cs, cf, dp[2][N];
int main()
{
ShinLena;
cin >> n >> cs >> cf;
dp[0][0] = 1;
for (int I = 1, i = 1; i <= n - 1; ++i, I ^= 1)
{
dp[I][0] = 0;
for (int j = 1; j <= i; ++j)
{
dp[I][j] = (j+1ll)*j*dp[!I][j+1]%M;
(dp[I][j] += dp[!I][j-1]) %= M;
}
}
cout << dp[!(n&1)][1];
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... |