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 ...
随机推荐
- ubuntu apt-update NO_PUBKEY 40976EAF437D05B5 NO_PUBKEY 3B4FE6ACC0B21F32
Fetched 28.1 MB in 11s (2344 kB/s) W: GPG error: http://archive.canonical.com xenial Release: The fo ...
- 【C语言】控制台窗口图形界面编程(六):光标设置
目录 00. 目录 01. CONSOLE_CURSOR_INFO结构 02. GetConsoleCursorInfo函数 03. SetConsoleCursorInfo函数 04. SetCon ...
- thinkphp5验证码处理
1.确定项目目录>vendor>topthink>think-captcha目录存在 2.在config中添加验证码配置 //验证码配置 'captcha' => [ // 验 ...
- java关于时间的相关操作
/** * 获取当天时间零点 * @return */ public Date gettoday(){ SimpleDateFormat sdf = new SimpleDateFormat(&quo ...
- Core Animation教程
http://dev.wo.com.cn/bbs/viewthread.jsp?tid=141767&page=1 http://blog.csdn.net/lvxiangan/article ...
- 操作iframe的方法
子页面 <!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8&q ...
- Linux从入门到适应(二):更换清华源
1 进入到/etc/apt文件夹当中,找到sources.list,将其备份.命令:cp -p sources.list sources.list.old 2 采用管理员方式打开sources.lis ...
- 图解C/C++多级指针与多维数组
声明:本文转自 chenyang_yao ,欢迎阅读原文. 指针与数组是C/C++编程中非常重要的元素,同时也是较难以理解的.其中,多级指针与“多维”数组更是让很多人云里雾里,其实,只要掌握一定的方法 ...
- Python之面向对象slots与迭代器协议
Python之面向对象slots与迭代器协议 slots: # class People: # x=1 # def __init__(self,name): # self.name=name # de ...
- Courses on Turbulence
Courses on Turbulence Table of Contents 1. Lecture 1.1. UIUC Renewable energy and turbulent environm ...