-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1370-IncreasingDecreasingString.go
More file actions
77 lines (68 loc) · 2.88 KB
/
1370-IncreasingDecreasingString.go
File metadata and controls
77 lines (68 loc) · 2.88 KB
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
77
package main
// 1370. Increasing Decreasing String
// You are given a string s. Reorder the string using the following algorithm:
// Remove the smallest character from s and append it to the result.
// Remove the smallest character from s that is greater than the last appended character, and append it to the result.
// Repeat step 2 until no more characters can be removed.
// Remove the largest character from s and append it to the result.
// Remove the largest character from s that is smaller than the last appended character, and append it to the result.
// Repeat step 5 until no more characters can be removed.
// Repeat steps 1 through 6 until all characters from s have been removed.
// If the smallest or largest character appears more than once, you may choose any occurrence to append to the result.
// Return the resulting string after reordering s using 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.
// Constraints:
// 1 <= s.length <= 500
// s consists of only lowercase English letters.
import "fmt"
func sortString(s string) string {
count := make([]int, 26)
n, res := len(s), []byte{}
for _, c := range s { // 统计出现次数
count[c - 'a']++
}
for n > 0 {
for i := 0; i < 26; i++ {
if count[i] > 0 {
res = append(res, byte(i + 'a'))
count[i]--
n--
}
}
for i := 25; i >= 0; i-- {
if count[i] > 0 {
res = append(res, byte(i + 'a'))
count[i]--
n--
}
}
}
return string(res)
}
func main() {
// 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"
fmt.Println(sortString("aaaabbbbcccc")) // "abccbaabccba"
// Example 2:
// Input: s = "rat"
// Output: "art"
// Explanation: The word "rat" becomes "art" after re-ordering it with the mentioned algorithm.
fmt.Println(sortString("rat")) // "art"
}