# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
220171 | patrikpavic2 | Asceticism (JOI18_asceticism) | C++17 | 1082 ms | 36864 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <cstdio>
#include <cstring>
#include <vector>
#define X first
#define Y second
#define PB push_back
using namespace std;
typedef long long ll;
typedef pair < int , int > pii;
typedef vector < int > vi;
const int N = 3e3 + 50;
const int MOD = 1e9 + 7;
inline int add(int A,int B){
if(A + B >= MOD) return A + B - MOD;
return A + B;
}
inline int mul(int A,int B){
return (ll)A * B % MOD;
}
inline int sub(int A,int B){
if(A - B < 0) return A - B + MOD;
return A - B;
}
int dp[N][N], n, k;
int f(int x,int y,int lst){
if(x == n) return (y == k);
if(dp[x][y] != -1) return dp[x][y];
int ret = 0;
for(int nxt = 0;nxt <= x;nxt++){
ret = add(ret, f(x + 1, y + (nxt <= lst), nxt));
}
return ret;
}
int main(){
memset(dp, -1, sizeof(dp));
scanf("%d%d", &n, &k);
printf("%d\n", f(0, 0, 0));
return 0;
}
Compilation message (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... |