Welcome to Subscribe On Youtube
Question
Formatted question description: https://leetcode.ca/all/1370.html
1370. Increasing Decreasing String
Given a string s. You should re-order the string using the following algorithm:
Pick the smallest character from s and append it to the result.
Pick the smallest character from s which is greater than the last appended character to the result and append it.
Repeat step 2 until you cannot pick more characters.
Pick the largest character from s and append it to the result.
Pick the largest character from s which is smaller than the last appended character to the result and append it.
Repeat step 5 until you cannot pick more characters.
Repeat the steps from 1 to 6 until you pick all characters from s.
In each step, If the smallest or the largest character appears more than once you can choose any occurrence and append it to the result.
Return the result string after sorting s with this algorithm.
Example 1:
Input: s = "aaaabbbbcccc"
Output: "abccbaabccba"
Explanation: After steps 1, 2 and 3 of the first iteration, result = "abc"
After steps 4, 5 and 6 of the first iteration, result = "abccba"
First iteration is done. Now s = "aabbcc" and we go back to step 1
After steps 1, 2 and 3 of the second iteration, result = "abccbaabc"
After steps 4, 5 and 6 of the second iteration, result = "abccbaabccba"
Example 2:
Input: s = "rat"
Output: "art"
Explanation: The word "rat" becomes "art" after re-ordering it with the mentioned algorithm.
Example 3:
Input: s = "leetcode"
Output: "cdelotee"
Example 4:
Input: s = "ggggggg"
Output: "ggggggg"
Example 5:
Input: s = "spo"
Output: "ops"
Constraints:
1 <= s.length <= 500
s contains only lower-case English letters.
Algorithm
The rule of arrangement is lexicographically from smallest to largest, and then from the letter with the largest lexicographic order to the smallest letter. The idea is to use a freq array to count the number of occurrences of 26 lowercase letters, and then re-splice the letters into strings according to the rules.
Time O(n)
Space O(n)
Code
-
class Solution { public String sortString(String s) { int len = s.length(); int[] freq = new int[26]; for (int i = 0; i < len; i++) { freq[s.charAt(i) - 'a']++; } StringBuilder sb = new StringBuilder(); int count = 0; while (count < len) { for (int i = 0; i < 26; i++) { if (freq[i] > 0) { sb.append((char) (i + 'a')); freq[i]--; count++; } } for (int i = 25; i >= 0; i--) { if (freq[i] > 0) { sb.append((char) (i + 'a')); freq[i]--; count++; } } } return sb.toString(); } } ############ class Solution { public String sortString(String s) { int[] counter = new int[26]; for (char c : s.toCharArray()) { ++counter[c - 'a']; } StringBuilder sb = new StringBuilder(); while (sb.length() < s.length()) { for (int i = 0; i < 26; ++i) { if (counter[i] > 0) { sb.append((char) ('a' + i)); --counter[i]; } } for (int i = 25; i >= 0; --i) { if (counter[i] > 0) { sb.append((char) ('a' + i)); --counter[i]; } } } return sb.toString(); } }
-
// OJ: https://leetcode.com/problems/increasing-decreasing-string // Time: O(N) // Space: O(1) class Solution { public: string sortString(string s) { int cnt[26] = {0}; for (char c : s) cnt[c - 'a']++; int N = s.size(); string ans(N, '\0'); for (int i = 0; i < N; ) { for (int j = 0; j < 26; ++j) { if (!cnt[j]) continue; ans[i++] = 'a' + j; cnt[j]--; } for (int j = 25; j >= 0; --j) { if (!cnt[j]) continue; ans[i++] = 'a' + j; cnt[j]--; } } return ans; } };
-
class Solution: def sortString(self, s: str) -> str: counter = [0] * 26 for c in s: counter[ord(c) - ord('a')] += 1 ans = [] while len(ans) < len(s): for i in range(26): if counter[i]: ans.append(chr(i + ord('a'))) counter[i] -= 1 for i in range(25, -1, -1): if counter[i]: ans.append(chr(i + ord('a'))) counter[i] -= 1 return ''.join(ans)
-
func sortString(s string) string { counter := ['z' + 1]int{} for _, c := range s { counter[c]++ } var ans []byte for len(ans) < len(s) { for i := byte('a'); i <= 'z'; i++ { if counter[i] > 0 { ans = append(ans, i) counter[i]-- } } for i := byte('z'); i >= 'a'; i-- { if counter[i] > 0 { ans = append(ans, i) counter[i]-- } } } return string(ans) }
-
/** * @param {string} s * @return {string} */ var sortString = function (s) { let rs = ''; const m = new Map(); for (let i = 0; i < s.length; i++) { m.set(s[i], (m.get(s[i]) || 0) + 1); } const keys = [...m.keys()]; keys.sort(); while (rs.length < s.length) { for (let j = 0; j < keys.length; j++) { if (m.get(keys[j]) != 0) { rs += keys[j]; m.set(keys[j], m.get(keys[j]) - 1); } } for (let j = keys.length - 1; j >= 0; j--) { if (m.get(keys[j]) != 0) { rs += keys[j]; m.set(keys[j], m.get(keys[j]) - 1); } } } return rs; };
-
class Solution { public String sortString(String s) { int[] counts = new int[26]; int length = s.length(); for (int i = 0; i < length; i++) { char c = s.charAt(i); counts[c - 'a']++; } StringBuffer sb = new StringBuffer(); int remaining = length; boolean increasing = true; while (remaining > 0) { if (increasing) { for (int i = 0; i < 26; i++) { if (counts[i] > 0) { char c = (char) ('a' + i); sb.append(c); counts[i]--; remaining--; } } } else { for (int i = 25; i >= 0; i--) { if (counts[i] > 0) { char c = (char) ('a' + i); sb.append(c); counts[i]--; remaining--; } } } increasing = !increasing; } return sb.toString(); } } ############ class Solution { public String sortString(String s) { int[] counter = new int[26]; for (char c : s.toCharArray()) { ++counter[c - 'a']; } StringBuilder sb = new StringBuilder(); while (sb.length() < s.length()) { for (int i = 0; i < 26; ++i) { if (counter[i] > 0) { sb.append((char) ('a' + i)); --counter[i]; } } for (int i = 25; i >= 0; --i) { if (counter[i] > 0) { sb.append((char) ('a' + i)); --counter[i]; } } } return sb.toString(); } }
-
// OJ: https://leetcode.com/problems/increasing-decreasing-string // Time: O(N) // Space: O(1) class Solution { public: string sortString(string s) { int cnt[26] = {0}; for (char c : s) cnt[c - 'a']++; int N = s.size(); string ans(N, '\0'); for (int i = 0; i < N; ) { for (int j = 0; j < 26; ++j) { if (!cnt[j]) continue; ans[i++] = 'a' + j; cnt[j]--; } for (int j = 25; j >= 0; --j) { if (!cnt[j]) continue; ans[i++] = 'a' + j; cnt[j]--; } } return ans; } };
-
class Solution: def sortString(self, s: str) -> str: counter = [0] * 26 for c in s: counter[ord(c) - ord('a')] += 1 ans = [] while len(ans) < len(s): for i in range(26): if counter[i]: ans.append(chr(i + ord('a'))) counter[i] -= 1 for i in range(25, -1, -1): if counter[i]: ans.append(chr(i + ord('a'))) counter[i] -= 1 return ''.join(ans)
-
func sortString(s string) string { counter := ['z' + 1]int{} for _, c := range s { counter[c]++ } var ans []byte for len(ans) < len(s) { for i := byte('a'); i <= 'z'; i++ { if counter[i] > 0 { ans = append(ans, i) counter[i]-- } } for i := byte('z'); i >= 'a'; i-- { if counter[i] > 0 { ans = append(ans, i) counter[i]-- } } } return string(ans) }
-
/** * @param {string} s * @return {string} */ var sortString = function (s) { let rs = ''; const m = new Map(); for (let i = 0; i < s.length; i++) { m.set(s[i], (m.get(s[i]) || 0) + 1); } const keys = [...m.keys()]; keys.sort(); while (rs.length < s.length) { for (let j = 0; j < keys.length; j++) { if (m.get(keys[j]) != 0) { rs += keys[j]; m.set(keys[j], m.get(keys[j]) - 1); } } for (let j = keys.length - 1; j >= 0; j--) { if (m.get(keys[j]) != 0) { rs += keys[j]; m.set(keys[j], m.get(keys[j]) - 1); } } } return rs; };