1

Bulls and Cows

You are playing the following Bulls and Cows game with your friend: You write down a number and ask your friend to guess what the number is. Each time your friend makes a guess, you provide a hint that indicates how many digits in said guess match your secret number exactly in both digit and position (called "bulls") and how many digits match the secret number but locate in the wrong position (called "cows"). Your friend will use successive guesses and hints to eventually derive the secret number.

For example:

Secret number: "1807"
Friend's guess: "7810"
Hint: 1 bull and 3 cows. (The bull is 8, the cows are 0, 1 and 7.)
Write a function to return a hint according to the secret number and friend's guess, use A to indicate the bulls and B to indicate the cows. In the above example, your function should return "1A3B".

Please note that both secret number and friend's guess may contain duplicate digits, for example:

Secret number: "1123"
Friend's guess: "0111"
In this case, the 1st 1 in friend's guess is a bull, the 2nd or 3rd 1 is a cow, and your function should return "1A1B".
You may assume that the secret number and your friend's guess only contain digits, and their lengths are always equal.

tricky哈希表法

复杂度

O(N) 时间 O(1) 空间

思路

思路很简单,重点是这里用了一个map来找cows,很巧妙的小trick,省了时间省了空间
map满足的property:假设3这个位置是正数,正数代表secret有没配上的3,这个正数为100,代表secret里有100个没配上的3;假设3这个位置是负数,代表guess有没配上的3;
假设在某一个时刻,secret当前数字和guess当前数字不同,再假设secret当前数字为3,记为s=3,我们就得查看map[3]是正数还是负数还是0?
如果是正数:说明secret里多余的(配不上的)3又增加了一个,cows不变
如果是负数:说明guess里有多余的(没配上的)3,二话不说,给他配上,cows++
如果是0:说明两边都不多余,cows不变
对于guess也一样

注意

cows++的条件是map[x] < 0 不是 map[x] == 0

代码

public class Solution {
    public String getHint(String secret, String guess) {
        int[] map = new int[10];
        int bulls = 0, cows = 0;
        for (int i = 0; i < secret.length(); i++) {
            int s = secret.charAt(i) - '0';
            int g = guess.charAt(i) - '0';
            if (s == g)
                bulls++;
            else {
                if (map[s] < 0)//guess里有多余的,因为小于0只可能是guess造成的
                    cows++;
                if (map[g] > 0)//secret里有多余的,因为大于0只可能是secret造成的
                    cows++;
                map[s]++;
                map[g]--;
            }
        }
        return bulls + "A" + cows + "B";
    }
}

liuqi627
364 声望100 粉丝

引用和评论

0 条评论