1347:制造字母异位词的最小步骤数
This commit is contained in:
parent
be10ce0975
commit
2cbbd30623
@ -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)
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,51 @@
|
|||||||
|
<p>给你两个长度相等的字符串 <code>s</code> 和 <code>t</code>。每一个步骤中,你可以选择将 <code>t</code> 中的 <strong>任一字符</strong> 替换为 <strong>另一个字符</strong>。</p>
|
||||||
|
|
||||||
|
<p>返回使 <code>t</code> 成为 <code>s</code> 的字母异位词的最小步骤数。</p>
|
||||||
|
|
||||||
|
<p><strong>字母异位词</strong> 指字母相同,但排列不同(也可能相同)的字符串。</p>
|
||||||
|
|
||||||
|
<p> </p>
|
||||||
|
|
||||||
|
<p><strong>示例 1:</strong></p>
|
||||||
|
|
||||||
|
<pre><strong>输出:</strong>s = "bab", t = "aba"
|
||||||
|
<strong>输出:</strong>1
|
||||||
|
<strong>提示:</strong>用 'b' 替换 t 中的第一个 'a',t = "bba" 是 s 的一个字母异位词。
|
||||||
|
</pre>
|
||||||
|
|
||||||
|
<p><strong>示例 2:</strong></p>
|
||||||
|
|
||||||
|
<pre><strong>输出:</strong>s = "leetcode", t = "practice"
|
||||||
|
<strong>输出:</strong>5
|
||||||
|
<strong>提示:</strong>用合适的字符替换 t 中的 'p', 'r', 'a', 'i' 和 'c',使 t 变成 s 的字母异位词。
|
||||||
|
</pre>
|
||||||
|
|
||||||
|
<p><strong>示例 3:</strong></p>
|
||||||
|
|
||||||
|
<pre><strong>输出:</strong>s = "anagram", t = "mangaar"
|
||||||
|
<strong>输出:</strong>0
|
||||||
|
<strong>提示:</strong>"anagram" 和 "mangaar" 本身就是一组字母异位词。
|
||||||
|
</pre>
|
||||||
|
|
||||||
|
<p><strong>示例 4:</strong></p>
|
||||||
|
|
||||||
|
<pre><strong>输出:</strong>s = "xxyyzz", t = "xxyyzz"
|
||||||
|
<strong>输出:</strong>0
|
||||||
|
</pre>
|
||||||
|
|
||||||
|
<p><strong>示例 5:</strong></p>
|
||||||
|
|
||||||
|
<pre><strong>输出:</strong>s = "friend", t = "family"
|
||||||
|
<strong>输出:</strong>4
|
||||||
|
</pre>
|
||||||
|
|
||||||
|
<p> </p>
|
||||||
|
|
||||||
|
<p><strong>提示:</strong></p>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li><code>1 <= s.length <= 50000</code></li>
|
||||||
|
<li><code>s.length == t.length</code></li>
|
||||||
|
<li><code>s</code> 和 <code>t</code> 只包含小写英文字母</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
Loading…
Reference in New Issue
Block a user