-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMain.java
76 lines (64 loc) Β· 2.12 KB
/
Main.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
64
65
66
67
68
69
70
71
72
73
74
75
76
package Combination.P1256;
import java.io.BufferedReader;
import java.io.FileInputStream;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class Main {
static int[][] combis = new int[202][202];
static int MAX = 1000000000;
static int N, M, K;
static int aCase, zCase;
public static void main(String[] args) throws Exception {
// System.setIn(new FileInputStream("src/Combination/P1256/input.txt"));
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer st = new StringTokenizer(br.readLine());
N = Integer.parseInt(st.nextToken());
M = Integer.parseInt(st.nextToken());
K = Integer.parseInt(st.nextToken());
if (K > comb(N + M, N)) {
System.out.println(-1);
} else {
StringBuilder sb = new StringBuilder();
while (N + M > 0) {
if (N == 0 || M == 0) {
break;
}
aCase = comb(N + M - 1, N - 1);
zCase = comb(N + M - 1, M - 1);
if (K <= aCase) {
sb.append("a");
N--;
} else {
sb.append("z");
M--;
K -= aCase;
}
}
for (int i = 0; i < N; i++) {
sb.append('a');
}
for (int i = 0; i < M; i++) {
sb.append('z');
}
System.out.println(sb);
}
}
static int comb(int n, int k) {
if (combis[n][k] != 0)
return combis[n][k];
for (int i = 1; i <= n; i++) {
for (int j = 0; j <= k; j++) {
if (i == j || j == 0){
combis[i][j] = 1;
} else {
long result = combis[i-1][j-1] + combis[i-1][j];
if (result > MAX)
combis[i][j] = MAX;
else
combis[i][j] = (int) result;
}
}
}
return combis[n][k];
}
}