HDU4930-Fighting the Landlords
题意:斗地主,就是要自己出牌。使得对手在这一轮无法出牌,或者有出牌的可能。可是你的牌已经走完了。假设符合这些条件的话,输出Yes。否则输出No。
思路:先预处理能直接把牌走完的情况,假设不行的话就直接暴力枚举能获胜的情况。
#include <iostream>
#include <cstdio>
#include <cstring>
#include <algorithm> using namespace std; const int MAXN = 20; char s1[MAXN], s2[MAXN];
int p1[MAXN], p2[MAXN], num1[MAXN], num2[MAXN]; void change(char ch, int *p) {
if (ch == 'Y') p[17] = 1;
else if (ch == 'X') p[16] = 1;
else if (ch == '2') p[15]++;
else if (ch == 'A') p[14]++;
else if (ch == 'K') p[13]++;
else if (ch == 'Q') p[12]++;
else if (ch == 'J') p[11]++;
else if (ch == 'T') p[10]++;
else p[ch - '0']++;
} void count(int n, int *num) {
if (n == 1) num[1]++;
else if (n == 2) num[2]++;
else if (n == 3) num[3]++;
else if (n == 4) num[4]++;
} int slove(int n) {
if (n == 1) return 1;
else if (n == 2 && num1[2]) return 1;
else if (n == 2 && p1[16] && p1[18]) return 1;
else if (n == 3 && num1[3]) return 1;
else if (n == 4 && (num1[4] || (num1[3] && num1[1]))) return 1;
else if (n == 5 && num1[3] && num1[2]) return 1;
else if (n == 6 && num1[4]) return 1;
return 0;
} int main() {
int cas;
scanf("%d", &cas);
while (cas--) {
scanf("%s%s", s1, s2);
int l1 = strlen(s1);
int l2 = strlen(s2);
memset(p1, 0, sizeof(p1));
memset(p2, 0, sizeof(p2));
for (int i = 0; i < l1; i++)
change(s1[i], p1);
for (int i = 0; i < l2; i++)
change(s2[i], p2);
memset(num1, 0, sizeof(num1));
memset(num2, 0, sizeof(num2));
for (int i = 0; i < 18; i++)
count(p1[i], num1);
for (int i = 0; i < 18; i++)
count(p2[i], num2); int flag = 0;
if (l1 <= 6) //推断是否能直接把牌走完的情况
flag = slove(l1); if (flag) {
printf("Yes\n");
continue;
} if (p1[16] && p1[17]) { //推断两方是否存在一方有王炸的情况
printf("Yes\n");
continue;
}
if (p2[16] && p2[17]) {
printf("No\n");
continue;
} if (num1[4]) { //推断炸的存在的情况
int a = 1, b = 1;
for (int i = 18; i >= 3; i--)
if (p1[i] == 4) {
a = i;
break;
}
for (int i = 18; i >= 3; i--)
if (p2[i] == 4) {
b = i;
break;
}
if (a > b)
flag = 1;
if (b > a)
flag = -1;
}
if (flag == 1) {
printf("Yes\n");
continue;
}
if (flag == -1) {
printf("No\n");
continue;
} int c = 0; //推断之存在对手有炸的情况
for (int i = 18; i >= 3; i--)
if (p2[i] == 4) {
c = 1;
break;
}
if (c) {
printf("No\n");
continue;
} if (num1[3]) { //推断有三带是否能直接获胜的情况
int a = 1, b = 1;
for (int i = 18; i >= 3; i--)
if (p1[i] == 3) {
a = i;
break;
}
for (int i = 18; i >= 3; i--)
if (p2[i] == 3) {
b = i;
break;
}
if (num1[2] && !num2[2]) {
flag = 1;
}
if (a > b)
flag = 1;
}
if (num1[2]) { //推断出对子是否能直接获胜的情况
int a = 1, b = 1;
for (int i = 18; i >= 3; i--)
if (p1[i] == 2 || p1[i] == 3) {
a = i;
break;
}
for (int i = 18; i >= 3; i--)
if (p2[i] == 2 || p2[i] == 3) {
b = i;
break;
}
if (a >= b)
flag = 1;
}
if (num1[1]) { //推断出单是否能直接获胜的情况
int a = 1, b = 1;
for (int i = 18; i >= 3; i--)
if (p1[i]) {
a = i;
break;
}
for (int i = 18; i >= 3; i--)
if (p2[i]) {
b = i;
break;
}
if (a >= b)
flag = 1;
} if (flag)
printf("Yes\n");
else
printf("No\n");
}
return 0;
}
HDU4930-Fighting the Landlords的更多相关文章
- HDU4930 Fighting the Landlords 模拟
Fighting the Landlords Fighting the Landlords Time Limit: 2000/1000 MS (Java/Others) Memory Limit ...
- hdu4930 Fighting the Landlords(模拟 多校6)
题目链接:pid=4930">http://acm.hdu.edu.cn/showproblem.php? pid=4930 Fighting the Landlords Time L ...
- HDU-4930 Fighting the Landlords 多校训练赛斗地主
仅仅须要推断一个回合就能够了,枚举推断能够一次出全然部牌或者大过对面的牌的可能,注意的是4张同样的牌带两张牌的话是能够被炸弹炸的. #include <iostream> #include ...
- HDU 4930 Fighting the Landlords(扯淡模拟题)
Fighting the Landlords 大意: 斗地主... . 分别给出两把手牌,肯定都合法.每张牌大小顺序是Y (i.e. colored Joker) > X (i.e. Black ...
- HDU 4930 Fighting the Landlords(暴力枚举+模拟)
HDU 4930 Fighting the Landlords 题目链接 题意:就是题中那几种牌型.假设先手能一步走完.或者一步让后手无法管上,就赢 思路:先枚举出两个人全部可能的牌型的最大值.然后再 ...
- HDU 4930 Fighting the Landlords(模拟)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4930 解题报告:斗地主,加了一个四张可以带两张不一样的牌,也可以带一对,判断打出一手牌之后,如果对手没 ...
- HDU 4930 Fighting the Landlords --多Trick,较复杂模拟
题意:两个人A和B在打牌,只有题目给出的几种牌能出若A第一次出牌B压不住或者A一次就把牌出完了,那么A赢,输出Yes,否则若A牌没出完而且被B压住了,那么A输,输出No. 解法:知道规则,看清题目,搞 ...
- 2014多校第六场 1010 || HDU 4930 Fighting the Landlords (模拟)
题目链接 题意 : 玩斗地主,出一把,只要你这一把对方要不了或者你出这一把之后手里没牌了就算你赢. 思路 : 一开始看了第一段以为要出很多次,实际上只问了第一次你能不能赢或者能不能把牌出尽. #inc ...
- 2014 多校联合训练赛6 Fighting the Landlords
本场比赛的三个水题之一,题意是两个玩家每人都持有一手牌,问第一个玩家是否有一种出牌方法使得在第一回和对方无牌可出.直接模拟即可,注意一次出完的情况,一开始没主意,wa了一发. #include< ...
- hdu 4930 Fighting the Landlords--2014 Multi-University Training Contest 6
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4930 Fighting the Landlords Time Limit: 2000/1000 MS ...
随机推荐
- Spring Cloud练习1
pom.xml <?xml version="1.0" encoding="UTF-8"?> <project xmlns="htt ...
- Leetcode 54:Spiral Matrix 螺旋矩阵
54:Spiral Matrix 螺旋矩阵 Given a matrix of m x n elements (m rows, n columns), return all elements of t ...
- myeclipse出现Failed to load JavaHL Library.
eclipse启动出现如图的状况: 解决方法: Window-Preferences-Team-SVN,在SVN接口的下拉框可以看到,默认选择的是JavaHL(JNI) Not Available,手 ...
- LG-P1311选择客栈
题目 暴力十分好想但你写不出来qwq 正解十分好写但你想不出来qaq 我们先读题,发现k其实没什么用 同时暴力枚举两个客栈的话会超时,所以只能同时枚举一个.我们枚举第二个客栈,然后用第二个客栈反推出前 ...
- Python 网络编程介绍
网络编程介绍 1. 目标: 编写一个C/S架构的软件 C/S: Client ----------- 基于网络 --------- Server B/S: Browser -------- 基于网络 ...
- MongoDB安装与配置启动
1.下载安装包.mongodb-linux-x86_64-rhel62-3.6.3.tgz 2.解压.修改名字. 3.修改配置文件: # mongodb.conf #where to loglogpa ...
- Go:冒泡排序
package main import "fmt" func BubbleSort(arr *[5]int) { fmt.Println("排序前:", *ar ...
- buf.equals()
buf.equals(otherBuffer) otherBuffer {Buffer} 返回:{Boolean} 返回一个 boolean 标识,无论 this 和 otherBuffer 是否具有 ...
- solr-5.3.1配置(win7 x64)
下载solr,下载地址http://www.eu.apache.org/dist/lucene/solr/5.3.1/solr-5.3.1.zip 解压到某个目录下,这里是解压到了d盘目录下,路径:D ...
- Gram-Schmidt向量正交化
正交:向量的内积为0,即相互垂直. 假如存在向量a,b确定一个平面空间,但是a,b向量并不垂直,如下图. 现在要在该平面内找出2个垂直的向量确定该平面: b和e垂直,接下来求解e: 根据向量计算法则: ...