列表

详情


1247. 交换字符使得字符串相同

有两个长度相同的字符串 s1 和 s2,且它们其中 只含有 字符 "x" 和 "y",你需要通过「交换字符」的方式使这两个字符串相同。

每次「交换字符」的时候,你都可以在两个字符串中各选一个字符进行交换。

交换只能发生在两个不同的字符串之间,绝对不能发生在同一个字符串内部。也就是说,我们可以交换 s1[i] 和 s2[j],但不能交换 s1[i] 和 s1[j]

最后,请你返回使 s1s2 相同的最小交换次数,如果没有方法能够使得这两个字符串相同,则返回 -1

 

示例 1:

输入:s1 = "xx", s2 = "yy"
输出:1
解释:
交换 s1[0] 和 s2[1],得到 s1 = "yx",s2 = "yx"。

示例 2:

输入:s1 = "xy", s2 = "yx"
输出:2
解释:
交换 s1[0] 和 s2[0],得到 s1 = "yy",s2 = "xx" 。
交换 s1[0] 和 s2[1],得到 s1 = "xy",s2 = "xy" 。
注意,你不能交换 s1[0] 和 s1[1] 使得 s1 变成 "yx",因为我们只能交换属于两个不同字符串的字符。

示例 3:

输入:s1 = "xx", s2 = "xy"
输出:-1

示例 4:

输入:s1 = "xxyyxyxyxx", s2 = "xyyxyxxxyx"
输出:4

 

提示:

原站题解

去查看

上次编辑到这里,代码来自缓存 点击恢复默认模板
class Solution { public: int minimumSwap(string s1, string s2) { } };

golang 解法, 执行用时: 4 ms, 内存消耗: 1.8 MB, 提交时间: 2023-02-25 09:16:30

func minimumSwap(s1, s2 string) int {
    cnt := [2]int{}
    for i, x := range s1 {
        if byte(x) != s2[i] {
            cnt[x%2]++ // 'x' 和 'y' ASCII 值的二进制最低位不同
        }
    }
    d := cnt[0] + cnt[1]
    if d%2 > 0 {
        return -1
    }
    return d/2 + cnt[0]%2
}

cpp 解法, 执行用时: 4 ms, 内存消耗: 6.1 MB, 提交时间: 2023-02-25 09:16:16

class Solution {
public:
    int minimumSwap(string s1, string s2) {
        int cnt[2]{};
        for (int i = 0, n = s1.length(); i < n; ++i)
            if (s1[i] != s2[i])
                ++cnt[s1[i] % 2]; // x 和 y ASCII 值的二进制最低位不同
        int d = cnt[0] + cnt[1];
        return d % 2 != 0 ? -1 : d / 2 + cnt[0] % 2;
    }
};

java 解法, 执行用时: 0 ms, 内存消耗: 39.6 MB, 提交时间: 2023-02-25 09:16:01

class Solution {
    public int minimumSwap(String s1, String s2) {
        int[] cnt = new int[2];
        for (int i = 0, n = s1.length(); i < n; ++i)
            if (s1.charAt(i) != s2.charAt(i))
                ++cnt[s1.charAt(i) % 2]; // x 和 y ASCII 值的二进制最低位不同
        int d = cnt[0] + cnt[1];
        return d % 2 != 0 ? -1 : d / 2 + cnt[0] % 2;
    }
}

python3 解法, 执行用时: 40 ms, 内存消耗: 14.9 MB, 提交时间: 2023-02-25 09:15:22

class Solution:
    def minimumSwap(self, s1: str, s2: str) -> int:
        cnt = Counter(x for x, y in zip(s1, s2) if x != y)
        d = cnt['x'] + cnt['y']
        return -1 if d % 2 else d // 2 + cnt['x'] % 2

golang 解法, 执行用时: 4 ms, 内存消耗: 1.8 MB, 提交时间: 2022-11-29 14:41:00

func minimumSwap(s1 string, s2 string) int {
	x, y := 0, 0
	for i := 0; i < len(s1); i++ {
		if s1[i] == s2[i] {
			continue
		}
		if s1[i] == 'x' {
			x++
		} else {
			y++
		}
	}
	if x % 2 + y % 2 == 1 {
		return -1
	}
	return x/2 + y/2 + 2*(x%2)
}

cpp 解法, 执行用时: 4 ms, 内存消耗: 6.2 MB, 提交时间: 2022-11-29 14:39:51

class Solution {
public:
    int minimumSwap(string s1, string s2) {
        int cnt1 = 0;
        int cnt2 = 0;
        for (int i = 0; i < s1.size(); i++) {
            if (s1[i] == 'x' && s2[i] == 'y') {
                cnt1++;
            } else if (s1[i] == 'y' && s2[i] == 'x') {
                cnt2++;
            }
        }
        if ((cnt1 + cnt2) % 2 != 0) {
            return -1;
        }
        return cnt1 / 2 + cnt2 / 2 + 2 * (cnt1 % 2);
    }
};

python3 解法, 执行用时: 40 ms, 内存消耗: 14.8 MB, 提交时间: 2022-11-29 14:39:29

class Solution:
    def minimumSwap(self, s1: str, s2: str) -> int:
        cnt1, cnt2 = 0, 0
        for i in range(len(s1)):
            if s1[i] == 'x' and s2[i] == 'y':
                cnt1 += 1
            elif s1[i] == 'y' and s2[i] == 'x':
                cnt2 += 1
        if (cnt1 + cnt2) % 2 != 0:
            return -1
        n1, m1 = divmod(cnt1, 2)
        n2, m2 = divmod(cnt2, 2)
        return n1 + n2 + 2 * m1

java 解法, 执行用时: 1 ms, 内存消耗: 39.7 MB, 提交时间: 2022-11-29 14:38:31

class Solution {
    public int minimumSwap(String s1, String s2) {
        // 如果是位置相同的字符,就不需要考虑
        // 所以我们只需要考虑不同的字符,有下面两种情况
        // x y 
        // y x
        // 分别计算出 xy yx 的数量
        // 这道题的 example 非常有用 
        // 我们知道 xx yy 只需要交换一次 所以基于贪心思想 我们尽可能的构造 xx yy
        // 而 xy 的数量 / 2 我们可以得到 xx yy 的 pair 数量 * 1 (交换次数)
        // 同理 yx 的数量 / 2 我们可以得到 yy xx 的 pair 数量 * 1 (交换次数)
        // 落单的 xy 如果没有 一个 yx 匹配,我们就知道无法交换成功
        // 如果有一对 xy yx 我们把最后的结果再加上 2 即可

        int xy = 0, yx = 0;
        for (int i = 0; i < s1.length(); i++) {
            if (s1.charAt(i) == 'x' && s2.charAt(i) == 'y') {
                xy++;
            } else if (s1.charAt(i) == 'y' && s2.charAt(i) == 'x') {
                yx++;
            }
        }

        if (xy % 2 != yx % 2 ) {
            return -1;
        }

        return xy / 2 + yx / 2 + (xy % 2 == 1? 2: 0);
    }
}

上一题