-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.go
More file actions
66 lines (52 loc) · 1.72 KB
/
main.go
File metadata and controls
66 lines (52 loc) · 1.72 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
// Source: https://leetcode.com/problems/construct-k-palindrome-strings
// Title: Construct K Palindrome Strings
// Difficulty: Medium
// Author: Mu Yang <http://muyang.pro>
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
// Given a string `s` and an integer `k`, return `true` if you can use all the characters in `s` to construct `k` palindrome strings or `false` otherwise.
// **Example 1:**
// ```
// Input: s = "annabelle", k = 2
// Output: true
// Explanation: You can construct two palindromes using all characters in s.
// Some possible constructions "anna" + "elble", "anbna" + "elle", "anellena" + "b"
// ```
// **Example 2:**
// ```
// Input: s = "leetcode", k = 3
// Output: false
// Explanation: It is impossible to construct 3 palindromes using all the characters of s.
// ```
// **Example 3:**
// ```
// Input: s = "true", k = 4
// Output: true
// Explanation: The only possible solution is to put each character in a separate string.
// ```
// **Constraints:**
// - `1 <= s.length <= 10^5`
// - `s` consists of lowercase English letters.
// - `1 <= k <= 10^5`
//
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
package main
// A palindrome can contain at most one alphabet with odd numbers
// We only need to count the alphabets in `s`
// and find if the number of odd alphabets is less than `k`.
func canConstruct(s string, k int) bool {
if len(s) < k {
return false
}
counts := [26]bool{}
for i := 0; i < len(s); i++ {
ch := s[i] - 'a'
counts[ch] = !counts[ch]
}
odds := 0
for i := 0; i < 26; i++ {
if counts[i] {
odds++
}
}
return odds <= k
}