(UPD: 2024-12-04 14:48 UTC) Judge is not working due to Cloudflare incident. (URL) We can do nothing about it, sorry. After the incident is resolved, we will grade all submissions.

Submission #484630

#TimeUsernameProblemLanguageResultExecution timeMemory
484630NekoRollyKangaroo (CEOI16_kangaroo)C++17
100 / 100
11 ms14132 KiB
#include<bits/stdc++.h> using namespace std; typedef long long ll; const int N = 2e3+4; const ll inf = 2e18; const int mod = 1e9+7; int n,a,b; int dp[N][N]; int main(){ ios_base::sync_with_stdio(0); cin.tie(0); cin >> n >> a >> b; dp[0][0] = 1; for (int i=1; i<=n; i++) for (ll j=1; j<=i; j++){ if (i == a || i == b) dp[i][j] = (dp[i-1][j-1] + dp[i-1][j])%mod; else dp[i][j] = ((j - (i>a) - (i>b)) * dp[i-1][j-1] + j*dp[i-1][j+1])%mod; } cout << dp[n][1] << "\n"; return 0; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...