zoukankan      html  css  js  c++  java
  • [leetcode]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.

    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. 

    Please note that both secret number and friend's guess may contain duplicate digits.

    Example 1:

    Input: secret = "1807", guess = "7810"
    
    Output: "1A3B"
    
    Explanation: 1 bull and 3 cows. The bull is 8, the cows are 0, 1 and 7.

    Example 2:

    Input: secret = "1123", guess = "0111"
    
    Output: "1A1B"
    
    Explanation: The 1st 1 in friend's guess is a bull, the 2nd or 3rd 1 is a cow.

    题意:

    猜字游戏。

    我负责猜,

    你负责给提示:数字和位置都对,bulls++。数字对位置不对,cows++。

    思路:

    挨个扫字符串s,

    挨个扫字符串g

    若s当前字符等于g的字符,bulls++

    用int[] map = new int[256]建一个简化版的HashMap

    思路类似valid anagram

    s当前字符在map里标记为++

    p当前字符在map里标记为--

    那么,若s当前字符已经被标记为--,说明p的字符来标记过,即它们字符相同但位置不同,cow++。

    同理,若p当前字符已经被标记为++, 说明s的字符来标记过, 即它们字符相同但位置不同,cow++。

    代码:

     1 class Solution {
     2     public String getHint(String secret, String guess) {
     3         // corner 
     4         if(secret.length() != guess.length()) return false;  
     5         int[] map = new int[256];
     6         int bull = 0;
     7         int cow = 0;
     8         for(int i = 0; i < secret.length();i++){
     9             char s = secret.charAt(i);
    10             char g = guess.charAt(i);    
    11             if(s == g){
    12                 bull++;
    13             }else{
    14                 if(map[s]<0) cow++;
    15                 if(map[g]>0) cow++;
    16                 map[s]++;
    17                 map[g]--;
    18             }    
    19         } 
    20         return bull +"A" + cow + "B";    
    21     }
    22 }
  • 相关阅读:
    SQL Server 损坏修复
    记录一些数据库函数或全局变量
    查询数据库空间使用情况
    SQL Server 2008文件与文件组的关系
    大型网站--负载均衡架构
    本地事务和分布式事务工作实践
    IIS防止同一IP大量非法访问
    使用EventLog类写Windows事件日志
    1878: [SDOI2009]HH的项链
    模板
  • 原文地址:https://www.cnblogs.com/liuliu5151/p/9142906.html
Copyright © 2011-2022 走看看