- 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
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
- 71
- 72
- 73
- 74
- 75
- 76
- 77
- 78
- 79
- 80
- 81
- 82
- 83
- 84
- 85
- 86
- 87
- 88
- 89
- 90
- 91
- 92
- 93
- 94
- 95
java解法
- 解题思路
- 这道题目要求根据输入的五张牌的点数和花色,判断其牌型并返回对应的编码。常见的牌型有同花顺、四条、葫芦、同花、顺子、三条等。
解题步骤如下:
输入获取:
从输入中获取五张牌的点数(数字或字母)和花色。每张牌由一个数字(或字母表示的特殊牌,如 J, Q, K, A)和一个花色组成。
牌值转换:
将牌面上的字符(例如 J, Q, K, A)转换为数字值,方便后续排序和比较。
J 转换为 11
Q 转换为 12
K 转换为 13
A 转换为 14
数字牌保持不变。
分析牌型:
同花顺(Straight Flush):五张牌是连续的,并且花色相同。
四条(Four of a Kind):有四张相同的牌。
葫芦(Full House):有三张相同的牌和两张相同的牌。
同花(Flush):五张牌的花色相同。
顺子(Straight):五张牌是连续的,不考虑花色。
三条(Three of a Kind):有三张相同的牌。
返回结果:
根据不同的牌型,返回对应的数字编码。例如:同花顺返回 1,四条返回 2,葫芦返回 3,等等。如果不符合任何牌型,返回 0。
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
String[] nums = new String[5];
String[] suits = new String[5];
for (int i = 0; i < 5; i++) {
nums[i] = sc.next();
suits[i] = sc.next();
}
System.out.println(getResult(nums, suits));
}
public static int getResult(String[] nums, String[] suits) {
TreeSet<Integer> values = new TreeSet<>();
Map<String, Integer> count = new HashMap<>();
Set<String> suitSet = new HashSet<>(Arrays.asList(suits));
for (String num : nums) {
int cardVal = cardValue(num);
values.add(cardVal);
count.put(num, count.getOrDefault(num, 0) + 1);
}
boolean isFlush = suitSet.size() == 1;
boolean isStraight = (values.last() - values.first() == 4 && values.size() == 5) || isLowAceStraight(values);
if (isStraight && isFlush) return 1;
if (hasCount(count, 4)) return 2;
if (hasCount(count, 3) && hasCount(count, 2)) return 3;
if (isFlush) return 4;
if (isStraight) return 5;
if (hasCount(count, 3)) return 6;
return 0;
}
private static boolean hasCount(Map<String, Integer> count, int num) {
return count.containsValue(num);
}
private static boolean isLowAceStraight(TreeSet<Integer> values) {
return values.contains(14) && values.contains(2) && values.contains(3) && values.contains(4) && values.contains(5);
}
private static int cardValue(String num) {
switch (num) {
case "J": return 11;
case "Q": return 12;
case "K": return 13;
case "A": return 14;
default: return Integer.parseInt(num);
}
}
}
class="hljs-button signin active" data-title="登录复制" data-report-click="{"spm":"1001.2101.3001.4334"}">
评论记录:
回复评论: