Lettcode_299_Bulls and Cows

本文是在学习中的总结,欢迎转载但请注明出处:http://blog.csdn.net/pistolove/article/details/50768550

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。

(2)该题主要考察字符匹配问题。由于两串数字中数的个数相同,所以,对于位置相同且数字亦相同的情况,只需遍历一次就能得到bull的个数;而对于位置不同且含有相同数的情况,则需要进行特殊处理以得到cow的个数。一方面,可能某一个数在其中的某一串数中出现了多次;另一方面,位置相同且数相同的情况也需要进行过滤。此处,创建一个Map来进行存储和过滤。其中,map的key为数串中的数,value为该数出现的次数。这样通过一次遍历即可将数和其个数存储起来,然后再进行两次遍历,分别得到同一位置上数相同情况的个数和不同位置上数相同情况的个数,即为所求。详情见下方代码。

(3)希望本文对你有所帮助。谢谢。

算法代码实现如下:

import java.util.HashMap;
import java.util.Map;

public class Bulls_and_Cows {

	public static void main(String[] args) {
		System.err.println(getHint("1122", "1222"));
	}

	public static String getHint(String secret, String guess) {
		char[] se = secret.toCharArray();
		char[] gu = guess.toCharArray();

		int len = se.length;
		int bull = 0;
		int cow = 0;

		Map<Character, Integer> seHas = new HashMap<Character, Integer>();
		for (int i = 0; i < len; i++) {
			if (!seHas.containsKey(se[i])) {
				seHas.put(se[i], 1);
			} else {
				seHas.put(se[i], seHas.get(se[i]) + 1);
			}
		}

		Boolean[] b = new Boolean[len];
		for (int i = 0; i < len; i++) {
			if (se[i] == gu[i]) {
				b[i]  = true;
				seHas.put(gu[i], seHas.get(gu[i])-1);
				cow++;
			}else {
				b[i] = false;
			}
		}

		for (int j = 0; j < len; j++) {
			if(b[j] == false && seHas.get(gu[j])!=null && seHas.get(gu[j])>0) {
				bull ++;
				seHas.put(gu[j], seHas.get(gu[j])-1);
			}
		}

		return cow + "A" + bull + "B";
	}
}
时间: 2024-08-15 15:13:26

Lettcode_299_Bulls and Cows的相关文章

3381: [Usaco2004 Open]Cave Cows 2 洞穴里的牛之二

3381: [Usaco2004 Open]Cave Cows 2 洞穴里的牛之二 Time Limit: 10 Sec  Memory Limit: 128 MBSubmit: 21  Solved: 18[Submit][Status][Discuss] Description 洞窟里有一道长长的通道.它由N(1≤N≤25000)段道尾相连构成,编号分别为1到N.每个通道有一个阈值,其范围在[1,10^9]依次通过i..j的通道,那奶牛的体重指数就不能超过i..j通道中阈值的最小值.贝茜有Q

POJ——T2186 Popular Cows || 洛谷——P2341 [HAOI2006]受欢迎的牛

http://poj.org/problem?id=2186 || https://www.luogu.org/problem/show?pid=2341 Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 33470   Accepted: 13634 Description Every cow's dream is to become the most popular cow in the herd. In a herd

[USACO08NOV]奶牛混合起来Mixed Up Cows

题目描述 Each of Farmer John's N (4 <= N <= 16) cows has a unique serial number S_i (1 <= S_i <= 25,000). The cows are so proud of it that each one now wears her number in a gangsta manner engraved in large letters on a gold plate hung around her

POJ 3348 Cows [凸包 面积]

Cows Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 9022   Accepted: 3992 Description Your friend to the south is interested in building fences and turning plowshares into swords. In order to help with his overseas adventure, they are f

POJ 2186 Popular Cows(Targin缩点)

传送门 Popular Cows Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 31808   Accepted: 12921 Description Every cow's dream is to become the most popular cow in the herd. In a herd of N (1 <= N <= 10,000) cows, you are given up to M (1 <=

Poj2186Popular Cows

Popular Cows Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 31533   Accepted: 12817 Description Every cow's dream is to become the most popular cow in the herd. In a herd of N (1 <= N <= 10,000) cows, you are given up to M (1 <= M &

POJ2186 Popular Cows

Description Every cow's dream is to become the most popular cow in the herd. In a herd of N (1 <= N <= 10,000) cows, you are given up to M (1 <= M <= 50,000) ordered pairs of the form (A, B) that tell you that cow A thinks that cow B is popula

Bzoj 1703: [Usaco2007 Mar]Ranking the Cows 奶牛排名 传递闭包,bitset

1703: [Usaco2007 Mar]Ranking the Cows 奶牛排名 Time Limit: 5 Sec  Memory Limit: 64 MBSubmit: 323  Solved: 238[Submit][Status][Discuss] Description 农夫约翰有N(1≤N≤1000)头奶牛,每一头奶牛都有一个确定的独一无二的正整数产奶率.约翰想要让这些奶牛按产奶率从高到低排序.    约翰已经比较了M(1≤M≤10000)对奶牛的产奶率,但他发现,他还需要再做一

POJ2186 Popular Cows 【强连通分量】+【Kosaraju】+【Tarjan】+【Garbow】

Popular Cows Time Limit: 2000MS   Memory Limit: 65536K Total Submissions: 23445   Accepted: 9605 Description Every cow's dream is to become the most popular cow in the herd. In a herd of N (1 <= N <= 10,000) cows, you are given up to M (1 <= M &l