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

LeetCode 299. Bulls and Cows

时间:2016-03-20 21:22:25      阅读:203      评论:0      收藏:0      [点我收藏+]

标签:

secret和guess按位读入,如果相等bull就加1,不相等就在各自统计不同数字出现次数的数组里加1(s_map[i]指secret里数字i出现的次数)。最后s_map和g_map存的是各自string中位置不等的各数值出现的次数,cow等于两个数组中相同位置的最小数。

 1 class Solution {
 2 public:
 3     string getHint(string secret, string guess) {
 4         int s_map[10] = {0}, g_map[10] = {0};
 5         int bull = 0, cow = 0;
 6         
 7         for(int i = 0; i < secret.length(); ++i){
 8             if(secret[i] == guess[i]) ++bull;
 9             else{
10                 ++s_map[secret[i] - 0];
11                 ++g_map[guess[i] - 0];
12             }
13         }
14         
15         for(int i = 0; i < 10; ++i){
16             cow += min(s_map[i], g_map[i]);
17         }
18         
19        
20         string res = "";
21         res = to_string(bull) + "A" + to_string(cow) + "B";
22         return res;
23     }
24 };

 

LeetCode 299. Bulls and Cows

标签:

原文地址:http://www.cnblogs.com/co0oder/p/5299509.html

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