# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
316507 | Dymo | 캥거루 (CEOI16_kangaroo) | C++14 | 1 ms | 384 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define pb push_back
#define ll long long
#define pll pair<ll,ll>
#define ff first
#define ss second
#define endl "\n"
const ll maxn=3e3+50;
const ll mod =1e9+7;
const ll base=1e17;
ll dp[maxn][maxn];
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
if (fopen("GIDDY.t", "r"))
{
freopen("GIDDY.inp", "r", stdin);
freopen("GIDDY.out", "w", stdout) ;
}
ll n, st, ed;
cin>>n>>st>>ed;
if (st>ed)
swap(st,ed);
dp[0][0]=1;
for (ll i=1; i<=n; i++)
{
for (ll j=0; j<=i; j++)
{
if (i!=st&&i!=ed)
{
// them 1 nhom loai 1;
if (j)
dp[i][j]=(dp[i][j]+dp[i-1][j-1])%mod;
// ghep 2 nhom loai 1;
if (j) dp[i][j]=(dp[i][j]+dp[i-1][j+1]*(j+1)*j)%mod;
// ghep nhom st va nhom loai 1;
if (i>st)
{
dp[i][j]=(dp[i][j]+dp[i-1][j+1]*(j+1))%mod;
}
// ghep nhom ed va nhom loai 1;
if (i>ed)
{
dp[i][j]=(dp[i][j]+dp[i-1][j+1]*(j+1))%mod;
}
}
else
{
dp[i][j]=(dp[i][j]+dp[i-1][j])%mod;
if (j) dp[i][j]=(dp[i][j]+dp[i-1][j+1]*(j+1))%mod;
}
}
}
cout <<dp[n][0];
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |