|
61 | 61 |
|
62 | 62 | <!-- 这里可写通用的实现逻辑 -->
|
63 | 63 |
|
| 64 | +**方法一:计数** |
| 65 | + |
| 66 | +我们首先判断字符串 $s$ 和字符串 $t$ 的长度是否相等,如果不相等,直接返回 `false`。 |
| 67 | + |
| 68 | +如果相等,我们可以统计每个位置的字符需要操作的最小次数,即 $cnt[x]$ 表示最小操作次数为 $x$ 的字符的个数。 |
| 69 | + |
| 70 | +如果有 $cnt[x]$ 个字符需要操作 $x$ 次,那么我们需要 $x + 26 \times (cnt[x] - 1)$ 次操作才能将这些字符转换为 $t$ 中对应的字符。因此,我们在 $[1,..25] 范围内枚举 $x$,如果 $x + 26 \times (cnt[x] - 1) \gt k$,说明我们无法将所有字符转换为 $t$ 中对应的字符,返回 `false`。 |
| 71 | + |
| 72 | +否则,枚举结束后,说明我们可以将所有字符转换为 $t$ 中对应的字符,返回 `true`。 |
| 73 | + |
| 74 | +时间复杂度 $O(n + C)$,空间复杂度 $O(C)$,其中 $n$ 为字符串 $s$ 和 $t$ 的长度;而 $C$ 为字符集大小,本题中 $C = 26$。 |
| 75 | + |
64 | 76 | <!-- tabs:start -->
|
65 | 77 |
|
66 | 78 | ### **Python3**
|
67 | 79 |
|
68 | 80 | <!-- 这里可写当前语言的特殊实现逻辑 -->
|
69 | 81 |
|
70 | 82 | ```python
|
71 |
| - |
| 83 | +class Solution: |
| 84 | + def canConvertString(self, s: str, t: str, k: int) -> bool: |
| 85 | + if len(s) != len(t): |
| 86 | + return False |
| 87 | + cnt = [0] * 26 |
| 88 | + for a, b in zip(s, t): |
| 89 | + x = (ord(b) - ord(a) + 26) % 26 |
| 90 | + cnt[x] += 1 |
| 91 | + for i in range(1, 26): |
| 92 | + if i + 26 * (cnt[i] - 1) > k: |
| 93 | + return False |
| 94 | + return True |
72 | 95 | ```
|
73 | 96 |
|
74 | 97 | ### **Java**
|
75 | 98 |
|
76 | 99 | <!-- 这里可写当前语言的特殊实现逻辑 -->
|
77 | 100 |
|
78 | 101 | ```java
|
| 102 | +class Solution { |
| 103 | + public boolean canConvertString(String s, String t, int k) { |
| 104 | + if (s.length() != t.length()) { |
| 105 | + return false; |
| 106 | + } |
| 107 | + int[] cnt = new int[26]; |
| 108 | + for (int i = 0; i < s.length(); ++i) { |
| 109 | + int x = (t.charAt(i) - s.charAt(i) + 26) % 26; |
| 110 | + ++cnt[x]; |
| 111 | + } |
| 112 | + for (int i = 1; i < 26; ++i) { |
| 113 | + if (i + 26 * (cnt[i] - 1) > k) { |
| 114 | + return false; |
| 115 | + } |
| 116 | + } |
| 117 | + return true; |
| 118 | + } |
| 119 | +} |
| 120 | +``` |
| 121 | + |
| 122 | +### **C++** |
| 123 | + |
| 124 | +```cpp |
| 125 | +class Solution { |
| 126 | +public: |
| 127 | + bool canConvertString(string s, string t, int k) { |
| 128 | + if (s.size() != t.size()) { |
| 129 | + return false; |
| 130 | + } |
| 131 | + int cnt[26]{}; |
| 132 | + for (int i = 0; i < s.size(); ++i) { |
| 133 | + int x = (t[i] - s[i] + 26) % 26; |
| 134 | + ++cnt[x]; |
| 135 | + } |
| 136 | + for (int i = 1; i < 26; ++i) { |
| 137 | + if (i + 26 * (cnt[i] - 1) > k) { |
| 138 | + return false; |
| 139 | + } |
| 140 | + } |
| 141 | + return true; |
| 142 | + } |
| 143 | +}; |
| 144 | +``` |
79 | 145 |
|
| 146 | +### **Go** |
| 147 | +
|
| 148 | +```go |
| 149 | +func canConvertString(s string, t string, k int) bool { |
| 150 | + if len(s) != len(t) { |
| 151 | + return false |
| 152 | + } |
| 153 | + cnt := [26]int{} |
| 154 | + for i := range s { |
| 155 | + x := (t[i] - s[i] + 26) % 26 |
| 156 | + cnt[x]++ |
| 157 | + } |
| 158 | + for i := 1; i < 26; i++ { |
| 159 | + if i+26*(cnt[i]-1) > k { |
| 160 | + return false |
| 161 | + } |
| 162 | + } |
| 163 | + return true |
| 164 | +} |
80 | 165 | ```
|
81 | 166 |
|
82 | 167 | ### **...**
|
|
0 commit comments