-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMilliardVasyaFunction.java
63 lines (46 loc) · 1.53 KB
/
MilliardVasyaFunction.java
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
import java.util.*;
import java.io.*;
public class MilliardVasyaFunction {
//1000000000
static final int CELLS = 10;
static final int POINTS = 9;
static Map<String,Long> cache;
public static void main(String[] args) {
Scanner in = new Scanner(System.in).useLocale(Locale.US);
PrintWriter out = new PrintWriter(System.out);
int s = in.nextInt();
cache = new HashMap<>();
if (s == 1) {//можем поставить 1 в старший разряд. Но если число больше 1, то в первый разряд мы ставить ничего не можем, будет больше миллиарда
System.out.println(""+ (1L + calc(CELLS-1,s)));
}
else {
System.out.println(""+calc(CELLS-1,s));
}
}
public static long calc(int cells, int points) {
String key = cells + "/" + points;
if (cache.containsKey(key)) {
return cache.get(key);
}
if (cells == 0 && points > 0) {
return 0;
}
if (points == 0) {
return 1;
}
if (cells == 1) {
if (points > POINTS) {
return 0;
}
else {
return 1;
}
}
long result = 0;
for (int i = 0; i <= Math.min(POINTS, points); i++) {
result += calc(cells-1, points - i);
}
cache.put(key, result);
return result;
}
}