码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode:Bulls and Cows - 猜数字游戏

时间:2015-11-01 00:30:51      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:

1、题目名称

Bulls and Cows(猜数字游戏)

2、题目地址

https://leetcode.com/problems/bulls-and-cows/

3、题目内容

英文:You are playing the following Bulls and Cows game with your friend: You write a 4-digit secret number and ask your friend to guess it, each time your friend guesses a number, you give a hint, the hint tells your friend how many digits are in the correct positions (called "bulls") and how many digits are in the wrong positions (called "cows"), your friend will use those hints to find out the secret number.

中文:假设你正在玩猜数字游戏(Bulls and Cows):你写出4个数字让你的朋友猜,每次你的朋友猜一个数字,你给出一条线索,这个线索告诉你的朋友,有多少个数字位置是正确的(被称为Bulls),有多少个数字位置是不正确的(被称为Cows),你的朋友需要根据这些线索最终猜出正确的数字。

例如,给出的数字是1807,你的朋友猜的是7810,这里用A代表Bulls,B代表Cows,则给出的线索是1A3B。

题目中给出的secret(被猜测数字)和guess(猜测的数字)长度一定是一样的。

4、解题方法1

做这道题还需要注意,一般的猜数字游戏中,被猜的数字有四个且互不相同,但在本题中,可以有任意多个数字,且数字有可能存在同一数字重复多次出现的情况。

一开始我想了一个比较笨的办法,即分别求出A和B的数量,暴力破解,Java代码如下:

/**
 * @功能说明:LeetCode 299 - Bulls and Cows
 * @开发人员:Tsybius2014
 * @开发时间:2015年10月31日
 */
public class Solution {
    
    /**
     * 猜数字
     * @param secret 原数字
     * @param guess 猜测数字
     * @return
     */
    public String getHint(String secret, String guess) {
        
        if (secret == null || guess == null || secret.length() != guess.length()) {
            return "";
        }
        
        int countA = 0;
        int countB = 0;
        
        char[] arrA = secret.toCharArray();
        char[] arrB = guess.toCharArray();
        
        //求A的数量
        for (int i = 0; i < arrA.length; i++) {
            for (int j = 0; j < arrB.length; j++) {
                if (arrA[i] == ‘ ‘ || arrB[j] == ‘ ‘) {
                    continue;
                } else if (arrA[i] == arrB[j]) {
                    if (i == j) {
                        countA++;
                        arrA[i] = ‘ ‘;
                        arrB[j] = ‘ ‘;
                    }
                }
            }
        }

        //求B的数量
        for (int i = 0; i < arrA.length; i++) {
            for (int j = 0; j < arrB.length; j++) {
                if (arrA[i] == ‘ ‘ || arrB[j] == ‘ ‘) {
                    continue;
                } else if (arrA[i] == arrB[j]) {
                    countB++;
                    arrA[i] = ‘ ‘;
                    arrB[j] = ‘ ‘;
                }
            }
        }
        
        return String.valueOf(countA) + "A" + String.valueOf(countB) + "B";
    }
}

5、解题方法2

后来我看了下讨论区,发现了一种更加高效的方法。这个方法的大致思路是,创建一个包含10个元素的数组,分别用于记录遇到的每个数字的情况。这个方法只需要遍历一次数组。

Java代码如下:

/**
 * @功能说明:LeetCode 299 - Bulls and Cows
 * @开发人员:Tsybius2014
 * @开发时间:2015年10月31日
 */
public class Solution {
    
    /**
     * 猜数字
     * @param secret 原数字
     * @param guess 猜测数字
     * @return
     */
    public String getHint(String secret, String guess) {
        
        if (secret == null || guess == null || secret.length() != guess.length()) {
            return "";
        }
        
        int countA = 0;
        int countB = 0;
        int[] count = new int[10];
        
        for (int i = 0; i < secret.length(); i++) {
            if (secret.charAt(i) == guess.charAt(i)) {
                countA++;
            } else {
                count[secret.charAt(i) - ‘0‘]++;
                if (count[secret.charAt(i) - ‘0‘] <= 0) {
                    countB++;
                }
                count[guess.charAt(i)- ‘0‘]--;
                if (count[guess.charAt(i)- ‘0‘] >= 0) {
                    countB++;
                }
            }
        }
        
        return String.valueOf(countA) + "A" + String.valueOf(countB) + "B";
    }
}

END

LeetCode:Bulls and Cows - 猜数字游戏

标签:

原文地址:http://my.oschina.net/Tsybius2014/blog/524452

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!