forked from mehul-1607/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path_1400.java
62 lines (60 loc) · 1.9 KB
/
_1400.java
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
package com.fishercoder.solutions;
import java.util.HashMap;
import java.util.Map;
/**
* 1400. Construct K Palindrome Strings
*
* Given a string s and an integer k. You should construct k non-empty palindrome strings using all the characters in s.
* 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.
*
* Example 4:
* Input: s = "yzyzyzyzyzyzyzy", k = 2
* Output: true
* Explanation: Simply you can put all z's in one string and all y's in the other string. Both strings will be palindrome.
*
* Example 5:
* Input: s = "cr", k = 7
* Output: false
* Explanation: We don't have enough characters in s to construct 7 palindromes.
*
* Constraints:
* 1 <= s.length <= 10^5
* All characters in s are lower-case English letters.
* 1 <= k <= 10^5
* */
public class _1400 {
public static class Solution1 {
public boolean canConstruct(String s, int k) {
if (s.length() < k) {
return false;
}
Map<Character, Integer> map = new HashMap<>();
for (char c : s.toCharArray()) {
map.put(c, map.getOrDefault(c, 0) + 1);
}
int count = 0;
for (char c : map.keySet()) {
if (map.get(c) % 2 == 1) {
count++;
}
}
return count <= k;
}
}
}