美文网首页
[LeetCode 299] Bulls and Cows (M

[LeetCode 299] Bulls and Cows (M

作者: 灰睛眼蓝 | 来源:发表于2019-07-24 13:59 被阅读0次

    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.

    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.

    Please note that both secret number and friend's guess may contain duplicate digits.

    Example 1:
    Input: secret = "1807", guess = "7810"
    Output: "1A3B"
    Explanation: 1 bull and 3 cows. The bull is 8, the cows are 0, 1 and 7.</pre>

    Example 2:
    Input: secret = "1123", guess = "0111"
    Output: "1A1B"
    Explanation: The 1st 1 in friend's guess is a bull, the 2nd or 3rd 1 is a cow.</pre>

    Note: You may assume that the secret number and your friend's guess only contain digits, and their lengths are always equal.

    class Solution {
        public String getHint(String secret, String guess) {
            if (secret == null || secret.length () == 0 || guess == null || guess.length () == 0)
                return "";
            
            Map<Character, List<Integer>> secretMap = new HashMap<> ();
            
            for (int i = 0; i < secret.length (); i++) {
                List<Integer> indexes = secretMap.getOrDefault (secret.charAt (i), new ArrayList<Integer> ());
                indexes.add (i);
                secretMap.put (secret.charAt (i), indexes);
            }
            
            int[] bullVsCow = new int[2];
            Map<Character, List<Integer>> guessMap = new HashMap<> ();
            
            for (int i = 0; i < guess.length (); i++) {
                char currentCh = guess.charAt (i);
                if (secretMap.containsKey (currentCh)) {
                    List<Integer> list = secretMap.get (currentCh);
                    if (list.contains (i)) {
                        
                        // System.out.println (i);
                        bullVsCow[0]++;
                        list.remove (new Integer (i)); 
                    } else {
                        // System.out.println ("Guess: " + guess.charAt (i) + " " + i);
                        List<Integer> indexes = guessMap.getOrDefault (guess.charAt (i), new ArrayList<Integer> ());
                        indexes.add (i);
                        guessMap.put (guess.charAt (i), indexes);
                    }
                                        
                    if (list.size () == 0) {
                        secretMap.remove (currentCh);
                    }
                }
            }
            
            for (Map.Entry <Character, List<Integer>> entry : guessMap.entrySet ()) {
                
                char currentCh = entry.getKey ();
                // System.out.print ("key: " + currentCh);
                // System.out.println (" value: " + Arrays.toString (entry.getValue ().toArray ()));
                
                if (secretMap.containsKey (currentCh)) {
                    bullVsCow[1] += Math.min (secretMap.get(currentCh).size (), entry.getValue ().size ());
                }
                
            }
            
            StringBuilder result = new StringBuilder ();
            result.append (bullVsCow[0]).append ("A").append (bullVsCow[1]).append ("B");
            
            return result.toString ();
        }
    }
    

    相关文章

      网友评论

          本文标题:[LeetCode 299] Bulls and Cows (M

          本文链接:https://www.haomeiwen.com/subject/wmdxrctx.html