LeetCode | 299. Bulls and Cows

题目

You are playing the Bulls and Cows game with your friend.

You write down a secret number and ask your friend to guess what the number is. When your friend makes a guess, you provide a hint with the following info:

The number of “bulls”, which are digits in the guess that are in the correct position.
The number of “cows”, which are digits in the guess that are in your secret number but are located in the wrong position. Specifically, the non-bull digits in the guess that could be rearranged such that they become bulls.
Given the secret number secret and your friend’s guess guess, return the hint for your friend’s guess.

The hint should be formatted as “xAyB”, where x is the number of bulls and y is the number of cows. Note that both secret and guess may contain duplicate digits.

Example 1:

Input: secret = “1807”, guess = “7810”
Output: “1A3B”
Explanation: Bulls are connected with a ‘|’ and cows are underlined:
“1807”
|
“7810”
Example 2:

Input: secret = “1123”, guess = “0111”
Output: “1A1B”
Explanation: Bulls are connected with a ‘|’ and cows are underlined:
“1123” “1123”
| or |
“0111” “0111”
Note that only one of the two unmatched 1s is counted as a cow since the non-bull digits can only be rearranged to allow one 1 to be a bull.
Example 3:

Input: secret = “1”, guess = “0”
Output: “0A0B”
Example 4:

Input: secret = “1”, guess = “1”
Output: “1A0B”

Constraints:

1 <= secret.length, guess.length <= 1000
secret.length == guess.length
secret and guess consist of digits only.

代码

class Solution {
public:
    string getHint(string secret, string guess) {
        int num_a, num_b;
        num_a = num_b = 0;
        int length = secret.length();
        vector<int> A(10, 0);
        string res = "";
        for(int i = 0; i<length; i++)
        {
            if(secret[i] == guess[i])
            {
                num_a++;
                secret[i] = guess[i] = '#';
            }
        }
        for(int i = 0; i<length; i++)
        {
            if(secret[i] != '#')
                A[secret[i] - '0']++;
        }
        for(int i = 0; i<length; i++)
        {
            if(secret[i] == '#')
                continue;
            if(A[guess[i] - '0'] > 0)
            {
                A[guess[i] - '0']--;
                num_b++;
            }
        }
        res = to_string(num_a) + 'A' + to_string(num_b) + 'B';
        return res;
    }
};

又是一次AC~

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值