forked from MrTuanDao/Applied_Algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNURSE.cpp
40 lines (31 loc) · 835 Bytes
/
NURSE.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#include <bits/stdc++.h>
using namespace std;
const int N = 1e3 + 10;
int n, k1, k2;
int dp[N];
// Trả về Số lượng cách cho h ngày thoả mãn
// 1.bắt đầu bằng 1 chuỗi ngày
// 2.sau 1 chuỗi ngày luôn là 1 ngày nghỉ
int count(int h) {
if (h == 0) return dp[h] = 1;
if ( h < k1 + 1) return 0;
if (dp[h]) return dp[h];
int res = 0;
for (int i = k1; i <= k2; i++) {
res += count(h - (i + 1) );
}
return dp[h] = res;
}
// Trả về Số lượng cách cho k ngày thoả mãn bắt đầu bằng 1 chuỗi làm việc
int solve(int k) {
int res = count(k);
for (int i = k1; i <= k2; i++){
res += count(k - i);
}
return res;
}
int main () {
cin >> n >> k1 >> k2;
cout << solve(n) + solve(n - 1) << endl;
return 0;
}