# min具有给定数值的最小字符串

function getSmallestString(n, k) {
  let ans = "";
  const charArr = [
    " ",
    "a",
    "b",
    "c",
    "d",
    "e",
    "f",
    "g",
    "h",
    "i",
    "j",
    "k",
    "l",
    "m",
    "n",
    "o",
    "p",
    "q",
    "r",
    "s",
    "t",
    "u",
    "v",
    "w",
    "x",
    "y",
    "z",
  ];

  for (let i = n; i >= 1; i--) {
    const bound = k - 26 * (i - 1);

    if (bound > 0) {
      ans += charArr[bound];
      k -= bound;
    } else {
      ans += "a";
      k -= 1;
    }
  }

  return ans;
}

console.log(getSmallestString(5, 73));
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
Last Updated: 6/27/2023, 7:40:45 PM