LeetCode 题解(282) : Bulls and Cows

来源:互联网 发布:c语言菱形编程 编辑:程序博客网 时间:2024/05/11 01:10

题目:

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.

For example:

Secret number:  "1807"Friend's guess: "7810"
Hint: 1 bull and 3 cows. (The bull is 8, the cows are0, 1 and 7.)

Write a function to return a hint according to the secret number and friend's guess, useA 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.

题解:

哈希表。注意求bull和cow要分别扫,求bull时还要mark position。

C++版:

class Solution {public:    string getHint(string secret, string guess) {        unordered_map<int, char> pos;        unordered_map<char, int> count;        unordered_set<int> locations;        for(int i = 0; i < secret.length(); i++) {            pos.insert(pair<int, char>(i, secret[i]));            if(count.find(secret[i]) == count.end()) {                count.insert(pair<char, int>(secret[i], 1));            } else {                count[secret[i]]++;            }        }                int bulls = 0, cows = 0;        for(int i = 0; i < guess.length(); i++) {            if(pos[i] == guess[i]) {                bulls++;                count[pos[i]]--;                locations.insert(i);            }        }                for(int i = 0; i < guess.length(); i++) {            if(locations.find(i) != locations.end())                continue;            if(count.find(guess[i]) != count.end() && count[guess[i]] >= 1) {                cows++;                count[guess[i]]--;            }        }        return to_string(bulls) + "A" + to_string(cows) + "B";    }};

Python版:

class Solution(object):    def getHint(self, secret, guess):        """        :type secret: str        :type guess: str        :rtype: str        """        pos, digit = {}, {}        for i in range(len(secret)):            pos[i] = secret[i]            if secret[i] in digit:                digit[secret[i]] += 1            else:                digit[secret[i]] = 1                    bulls, cows, location = 0, 0, []                for j in range(len(guess)):            if pos[j] == guess[j]:                bulls += 1                digit[pos[j]] -= 1                location.append(j)        for j in range(len(guess)):            if j in location:                continue            if guess[j] in digit:                if digit[guess[j]] >= 1:                    cows += 1                    digit[guess[j]] -= 1        return str(bulls) + "A" + str(cows) + "B"            

0 0
原创粉丝点击