LeetCode 848. Shifting Letters

848. Shifting Letters

We have a string S of lowercase letters, and an integer array shifts.

Call the shift of a letter, the next letter in the alphabet, (wrapping around so that ‘z’ becomes ‘a’).

For example, shift(‘a’) = ‘b’, shift(‘t’) = ‘u’, and shift(‘z’) = ‘a’.

Now for each shifts[i] = x, we want to shift the first i+1 letters of S, x times.

Return the final string after all such shifts to S are applied.

Example 1:

Input: S = “abc”, shifts = [3,5,9]
Output: “rpl”
Explanation:
We start with “abc”.
After shifting the first 1 letters of S by 3, we have “dbc”.
After shifting the first 2 letters of S by 5, we have “igc”.
After shifting the first 3 letters of S by 9, we have “rpl”, the answer.
Note:

1 <= S.length = shifts.length <= 20000
0 <= shifts[i] <= 10 ^ 9

Approach

题目大意:给定一组反转数,要求你将字母向前翻转(字母范围a~z)(z反转为a)
思路方法:这题用前缀和处理,一次性求出每个字母需要翻转的次数,否则会超时,当然要防止数据溢出,所以要将过程取余。

Code

class Solution {
public:
    string shiftingLetters(string S, vector<int>& shifts) {
        if (shifts.size() == 0 || S == "")return S;
        for (int i = shifts.size() - 2; i >= 0; i--) {
            shifts[i] = (shifts[i]%26+shifts[i + 1]%26)%26;
        }
        for (int i = 0; i < shifts.size(); i++) {
            int c = S[i] - 'a' + shifts[i];
            S[i] = 'a' + c % 26;
        }
        return S;
    }
};
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值