(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 #474798

#TimeUsernameProblemLanguageResultExecution timeMemory
474798SirCovidThe19thKangaroo (CEOI16_kangaroo)C++17
100 / 100
30 ms31748 KiB
#include <bits/stdc++.h> using namespace std; int main(){ int n, a, b; cin >> n >> a >> b; long long dp[n + 1][n + 1] = {}; dp[0][0] = 1; for (int i = 1; i <= n; i++){ for (int j = 1; j <= n; j++){ if (i == a or i == b) dp[i][j] = dp[i - 1][j] + dp[i - 1][j - 1]; else dp[i][j] = (dp[i - 1][j + 1] * j) + (dp[i - 1][j - 1] * (j - (i > a) - (i > b))); dp[i][j] %= 1000000007; } } cout<<dp[n][1]<<endl; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...