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 ...
随机推荐
- html引用ttf字体文件
在样式表如此定义: @font-face { font-family: MyFontName;//自定义字体名称 src: url(../Gloss_And_Bloom.ttf) } 然后,具体使用: ...
- Java IO(四--字符流基本使用
在上一节,介绍了字节流的基本使用,本节介绍一下字符流的使用 Reader: public abstract class Reader implements Readable, Closeable { ...
- 第2节 hive基本操作:11、hive当中的分桶表以及修改表删除表数据加载数据导出等
分桶表 将数据按照指定的字段进行分成多个桶中去,说白了就是将数据按照字段进行划分,可以将数据按照字段划分到多个文件当中去 开启hive的桶表功能 set hive.enforce.bucketing= ...
- 第2节 mapreduce深入学习:12、reducetask运行机制(多看几遍)
ReduceTask的运行的整个过程 背下来1.启动线程到mapTask那里去拷贝数据,拉取属于每一个reducetask自己内部的数据2.数据的合并,拉取过来的数据进行合并,合并的过程,有可能在内存 ...
- Sublime Text3 学习笔记
注:以下记录自己的 Sublime Text3学习过程(持续更新中) 目录: 安装 下载文件 破解试用 插件安装 安装 Sublime Text 是一套跨平台的文本编辑器,支持基于Python的插件. ...
- 当执行计划中出现BITMAP CONVERSION TO ROWIDS关键字时,需要注意了。
前言 前些天优化了一些耗费buffers较多的SQL,但系统CPU降低的效果不明显,于是又拉了awr报告,查看了SQL ordered by Gets排名前列的SQL. 分析 SQL代码: selec ...
- 【Html,Css,JavaScript】初学总结
网页制作 HTML 一.通用模板: <!DOCTYPE html> <html lang=”en”> <head> <meta charset=”UTF-8 ...
- Codeforces450 B. Jzzhu and Sequences
B. Jzzhu and Sequences time limit per test 1 second memory limit per test 256 megabytes input standa ...
- 查看FPM在你的机子上的平均内存占用情况
ps --no-headers -o "rss,cmd" -C php-fpm | awk '{ sum+=$1 } END { printf ("%d%s\n" ...
- POJ1013称硬币【枚举】
Counterfeit Dollar Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 52474 Accepted: 16 ...