leetcode 1663. Smallest String With A Given Numeric Value(具有给定数值的最小字符串)

The numeric value of a lowercase character is defined as its position (1-indexed) in the alphabet, so the numeric value of a is 1, the numeric value of b is 2, the numeric value of c is 3, and so on.

The numeric value of a string consisting of lowercase characters is defined as the sum of its characters’ numeric values. For example, the numeric value of the string “abe” is equal to 1 + 2 + 5 = 8.

You are given two integers n and k. Return the lexicographically smallest string with length equal to n and numeric value equal to k.

Note that a string x is lexicographically smaller than string y if x comes before y in dictionary order, that is, either x is a prefix of y, or if i is the first position such that x[i] != y[i], then x[i] comes before y[i] in alphabetic order.

Example 1:

Input: n = 3, k = 27
Output: “aay”
Explanation: The numeric value of the string is 1 + 1 + 25 = 27, and it is the smallest string with such a value and length equal to 3.

Example 2:

Input: n = 5, k = 73
Output: “aaszz”

给一个n,一个k,n表示字符串中要有n个字母,k表示这n个字母的和。
其中a~z字母的取值为1~26。
返回的字符串中字母要从小到大排列(字典顺序)。

思路:
Greedy
因为字母要从小到大排列,所以从最右到左尽量放最大的字母即可,直到k==0。

因为字符串要长度n,且最小字母为a,那就先初始化一个长度为n,全是a的字符串。

比如Example1, n=3, k = 27, 初始化为"aaa"

因为字符串中已经填入了3个a,所以k要-3,于是k=27-3=24。

然后从最右边开始,最大能放z,也就是26;但是一开始已经放了a,并把a减掉了,所以放z的话只能再减25(后面每个字母都要减去a),
k比25小的话直接放k就行。

如果k>25,放了z还有剩下的,那就再往左移一步,重复上面的过程,直到k==0。
因为题目中n <= k <= 26 * n,所以一定有符合的字符串。

    public String getSmallestString(int n, int k) {
        char[] chs = new char[n];
        
        Arrays.fill(chs, 'a');
        k -= n;
        
        for(int i = n - 1; i >= 0; i --) {
            if(k <= 0) break;
            chs[i] = (char)(chs[i] + Math.min(25, k));
            k -= Math.min(25, k);
        }
        
        return new String(chs);
    }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

蓝羽飞鸟

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值