leetCode 299. Bulls and Cows 哈希

简介:

299. 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 01 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.


思路:

1.遍历两个字符串A,B,如果某一位置的字符相等,那么bull++,否则将A中的字符放入一个vector中,B中的字符放入一个mutiset中。

2.遍历vector A,如果在B的mutiset中找到相等的元素,cow++,将这个元素从mutiset中删除。

3.组织字符串。

代码如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
class  Solution {
public :
     string getHint(string secret, string guess) 
     {
         vector< char > secretVector;
         multiset< char > guessMulSet;
         int  i;
         int  bulls = 0;
         int  cows = 0;
         for  (i = 0; i < secret.size(); i++)
         {
             if  (secret[i] == guess[i])
                 bulls++;
             else
             {
                 secretVector.push_back(secret[i]);
                 guessMulSet.insert(guess[i]);
             }
         }
         int  vecLen = secretVector.size();
         for  (i = 0; i < vecLen; i++)
         {
             if  (guessMulSet.find(secretVector[i]) != guessMulSet.end())
             {
                 cows++;
                 guessMulSet.erase(guessMulSet.find(secretVector[i]));
             }
         }
         string result =  "" ;
         stringstream ss;
         stringstream ss1;
         ss << bulls;
         string bullStr = ss.str();
     
         ss1 << cows;
         string cowStr = ss1.str();
         result += bullStr;
         result +=  "A" ;
         result += cowStr;
         result +=  "B" ;
     
         return  result;
     }
};

总结:这里使用到了mutiset这一容器,该容器允许出现重复的值。




本文转自313119992 51CTO博客,原文链接:http://blog.51cto.com/qiaopeng688/1837549

相关文章
|
7月前
《LeetCode》—— 哈希
《LeetCode》—— 哈希
|
7月前
leetcode-1044:最长重复子串(滚动哈希)
leetcode-1044:最长重复子串(滚动哈希)
148 0
|
6月前
|
算法 数据挖掘 开发者
LeetCode题目55:跳跃游戏【python5种算法贪心/回溯/动态规划/优化贪心/索引哈希映射 详解】
LeetCode题目55:跳跃游戏【python5种算法贪心/回溯/动态规划/优化贪心/索引哈希映射 详解】
|
6月前
|
存储 SQL 算法
LeetCode 题目 87:递归\动态规划\哈希实现 扰乱字符串
LeetCode 题目 87:递归\动态规划\哈希实现 扰乱字符串
|
7月前
[leetcode] 705. 设计哈希集合
[leetcode] 705. 设计哈希集合
|
7月前
leetcode-1001:网格照明(自定义哈希集合)
leetcode-1001:网格照明(自定义哈希集合)
45 0
|
算法 索引
leetcode-每日一题745. 前缀和后缀搜索(哈希和字典树)
如果我们用前缀 prefix 和 后缀 suff去暴力对比所有单词肯定会超时,我们可以先把单词里所有的前缀后缀组合,中间用特殊符号@连接,对应的最大下标存入哈希表中。搜索时,用特殊符号@连接前缀后缀,在哈希表中进行搜索
100 0
leetcode-每日一题745. 前缀和后缀搜索(哈希和字典树)
|
算法
leetcode-每日一题873. 最长的斐波那契子序列的长度(哈希和二分)
题目要求斐波那契数列长度要大于等于3,就等于说要确定 x[1] 和 x[2]来确定x[3]…x[n]之和的数列,所以我们用两层for循环来枚举x[1] 和 x[2] ,因为斐波那契数列满足 x[i] = x[i - 1] + x[i - 2], 所以x[3] = x[1] + x[2] x[4] = x[3] + x[2]…,我们只需要三个变量来不断变换, 每次从 arr 中找前两个数,然后查看后续在符合斐波那契的数在arr中是否存在
110 0
leetcode-每日一题873. 最长的斐波那契子序列的长度(哈希和二分)
|
算法
leetcode-每日一题648. 单词替换(哈希)
将字符串数组中的所有字符串存入哈希表中,遍历sentence中的所有单词,从短到长遍历单词前缀,对比哈希表中的单词是否存在,存在则替换。
79 0
leetcode-每日一题648. 单词替换(哈希)
|
算法 容器
力扣17 - 电话号码的字母组合【回溯、哈希映射、队列】
对应力扣.17电话号码的字母组合,详细动画和图示讲解,带你快乐刷题
100 0
力扣17 - 电话号码的字母组合【回溯、哈希映射、队列】