1347:制造字母异位词的最小步骤数

This commit is contained in:
huangge1199@hotmail.com 2021-04-15 22:47:30 +08:00
parent be10ce0975
commit 2cbbd30623
4 changed files with 141 additions and 2 deletions

View File

@ -0,0 +1,88 @@
//给你两个长度相等的字符串 s t每一个步骤中你可以选择将 t 中的 任一字符 替换为 另一个字符
//
// 返回使 t 成为 s 的字母异位词的最小步骤数
//
// 字母异位词 指字母相同但排列不同也可能相同的字符串
//
//
//
// 示例 1
//
// 输出s = "bab", t = "aba"
//输出1
//提示 'b' 替换 t 中的第一个 'a't = "bba" s 的一个字母异位词
//
//
// 示例 2
//
// 输出s = "leetcode", t = "practice"
//输出5
//提示用合适的字符替换 t 中的 'p', 'r', 'a', 'i' 'c'使 t 变成 s 的字母异位词
//
//
// 示例 3
//
// 输出s = "anagram", t = "mangaar"
//输出0
//提示"anagram" "mangaar" 本身就是一组字母异位词
//
//
// 示例 4
//
// 输出s = "xxyyzz", t = "xxyyzz"
//输出0
//
//
// 示例 5
//
// 输出s = "friend", t = "family"
//输出4
//
//
//
//
// 提示
//
//
// 1 <= s.length <= 50000
// s.length == t.length
// s t 只包含小写英文字母
//
// Related Topics 字符串
// 👍 24 👎 0
package leetcode.editor.cn;
import java.util.List;
//1347:制造字母异位词的最小步骤数
public class MinimumNumberOfStepsToMakeTwoStringsAnagram {
public static void main(String[] args) {
//测试代码
Solution solution = new MinimumNumberOfStepsToMakeTwoStringsAnagram().new Solution();
solution.minSteps("anagram", "mangaar");
}
//力扣代码
//leetcode submit region begin(Prohibit modification and deletion)
class Solution {
public int minSteps(String s, String t) {
int[] arr = new int[26];
int length = s.length();
int num = 0;
for (int i = 0; i < length; i++) {
if(arr[s.charAt(i)-'a']>=0){
num++;
}
arr[s.charAt(i)-'a']++;
if(arr[t.charAt(i)-'a']>0){
num--;
}
arr[t.charAt(i)-'a']--;
}
return num;
}
}
//leetcode submit region end(Prohibit modification and deletion)
}

View File

@ -0,0 +1,51 @@
<p>给你两个长度相等的字符串&nbsp;<code>s</code><code>t</code>。每一个步骤中,你可以选择将&nbsp;<code>t</code>&nbsp;中的 <strong>任一字符</strong> 替换为 <strong>另一个字符</strong></p>
<p>返回使&nbsp;<code>t</code>&nbsp;成为&nbsp;<code>s</code>&nbsp;的字母异位词的最小步骤数。</p>
<p><strong>字母异位词</strong> 指字母相同,但排列不同(也可能相同)的字符串。</p>
<p>&nbsp;</p>
<p><strong>示例 1</strong></p>
<pre><strong>输出:</strong>s = &quot;bab&quot;, t = &quot;aba&quot;
<strong>输出:</strong>1
<strong>提示:</strong>&#39;b&#39; 替换 t 中的第一个 &#39;a&#39;t = &quot;bba&quot; 是 s 的一个字母异位词。
</pre>
<p><strong>示例 2</strong></p>
<pre><strong>输出:</strong>s = &quot;leetcode&quot;, t = &quot;practice&quot;
<strong>输出:</strong>5
<strong>提示:</strong>用合适的字符替换 t 中的 &#39;p&#39;, &#39;r&#39;, &#39;a&#39;, &#39;i&#39;&#39;c&#39;,使 t 变成 s 的字母异位词。
</pre>
<p><strong>示例 3</strong></p>
<pre><strong>输出:</strong>s = &quot;anagram&quot;, t = &quot;mangaar&quot;
<strong>输出:</strong>0
<strong>提示:</strong>&quot;anagram&quot;&quot;mangaar&quot; 本身就是一组字母异位词。
</pre>
<p><strong>示例 4</strong></p>
<pre><strong>输出:</strong>s = &quot;xxyyzz&quot;, t = &quot;xxyyzz&quot;
<strong>输出:</strong>0
</pre>
<p><strong>示例 5</strong></p>
<pre><strong>输出:</strong>s = &quot;friend&quot;, t = &quot;family&quot;
<strong>输出:</strong>4
</pre>
<p>&nbsp;</p>
<p><strong>提示:</strong></p>
<ul>
<li><code>1 &lt;= s.length &lt;= 50000</code></li>
<li><code>s.length == t.length</code></li>
<li><code>s</code><code>t</code>&nbsp;只包含小写英文字母</li>
</ul>
<div><div>Related Topics</div><div><li>字符串</li></div></div>\n<div><li>👍 24</li><li>👎 0</li></div>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long