http://acm.hdu.edu.cn/showproblem.php?pid=4930

就是两个人玩斗地主,有8种牌型,单张,一对,三张,三带一,三带对,四带二,四炸,王炸。问先手能否一次出完牌或者出的第一手牌让对方无牌可出!!能则输出yes。

恶心模拟

8种组合: 1.单牌:一张牌

     2.对子:两张相同的牌

     3.三重奏(百度翻译出来的。。):三张相同的牌

      4.三带一:三张相同的带一张牌(大小只考虑前面的牌,不考虑带的)

      5.三带二:三张相同的带两张牌,带的两张牌可以一样,也可以不一样(大小只考虑前面的牌,不考虑带的)

      6.四带二:四个相同的带两张牌,带的两张牌可以一样,也可以不一样(大小只考虑前面的牌,不考虑带的)

      7.炸弹:四个相同的一起出,不带任何东西(能管除了核弹所有的)

      8.核弹:大小王一起(能管所有的牌)

注意: 1.4张相同的牌带两张牌的话是可以被炸弹炸的;

2.不能四带一

3.特判先手一次出完的情况

#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <cstring>
#include <string>
#include <queue>
#include <vector>
#include <iostream>
#include <algorithm>
using namespace std;
#define RD(x) scanf("%d",&x)
#define RD2(x,y) scanf("%d%d",&x,&y)
#define clr0(x) memset(x,0,sizeof(x))
typedef long long LL; int u[19], v[19], w[19];
int t,s,n,m; int id(char temp) {
if (temp=='Y') return 17;
if (temp=='X') return 16;
if (temp=='2') return 15;
if (temp=='A') return 14;
if (temp=='K') return 13;
if (temp=='Q') return 12;
if (temp=='J') return 11;
if (temp=='T') return 10;
return temp-'0';
} bool check() {
int i,j,k;
if (v[16]>=1 && v[17]>=1) {
return 1;
} if (m==2) {
if (w[16]>=1 && w[17]>=1) return 0;
} if (m==4) {
for (i=3; i<=15; ++i)
if (w[i]>=4){
//炸弹
for (j=i+1; j<=15; ++j)
if (v[j]>=4) return 1;
return 0;
}
} for (j=3; j<=15; ++j)
if (v[j]>=4) return 1; if (n<m) return 0; if (m==1) {
for (i=3; i<=17; ++i)
if (w[i]>=1){
for (j=i+1; j<=17; ++j)
if (v[j]>=1) return 1;
return 0;
}
} if (m==2) {
for (i=3; i<=15; ++i)
if (w[i]>=2) {
for (j=i+1; j<=15; ++j)
if (v[j]>=2) return 1;
return 0;
}
} if (m==3) {
for (i=3; i<=15; ++i)
if (w[i]>=3) {
for (j=i+1; j<=15; ++j)
if (v[j]>=3) return 1;
return 0;
}
} if (m==4) {
for (i=3; i<=15; ++i)
if (w[i]>=3){
//三带一
for (j=i+1; j<=15; ++j)
if (v[j]>=3) return 1;
return 0;
}
} if (m==5) {
for (i=3; i<=15; ++i)
if (w[i]>=3){
//三带对
for (j=i+1; j<=15; ++j)
if (v[j]>=3) {
break;
}
if (j>=16) return 0;
for (k=3; k<=15; ++k) {
if (k!=j && v[k]>=2) return 1;
}
return 0;
}
} return 0;
} bool solve() {
int i,j,k; if (u[16]>=1 && u[17]>=1) {
return 1;
} if (s==4 || s==6) {
for (i=3; i<=15; ++i)
if (u[i]>=4) return 1;
} if (s==1) {
return 1;
} if (s==2) {
for (i=3; i<=15; ++i)
if (u[i]>=2) return 1;
} if (s==3) {
for (i=3; i<=15; ++i)
if (u[i]>=3) return 1;
} if (s==4) {
for (i=3; i<=15; ++i)
if (u[i]>=3) return 1;
} if (s==5) {
for (i=3; i<=15; ++i)
if (u[i]>=3){
for (k=3; k<=15; ++k)
if (k!=i && u[k]>=2) return 1;
}
} for (i=3; i<=17; ++i){
if (u[i]>=4) {
clr0(w);
w[i]=u[i];
m = u[i];
if (!check()) return 1;
}
else if (u[i]>=3) {
for (j=3;j<=17;++j)
if (j!=i && u[j]>=2){
clr0(w);
w[i]=u[i];
w[j]=2;
m = u[i] + 2;
if (!check()) return 1;
}
clr0(w);
w[i]=u[i];
m = u[i];
if (!check()) return 1;
if (s>3){
for (j=3;j<=17;++j)
if (j!=i) break;
w[j]=1;
m = u[i] + 1;
if (!check()) return 1;
}
}
else if (u[i]>=2){
clr0(w);
w[i]=u[i];
m = u[i];
if (!check()) return 1;
}
else if (u[i]>=1){
clr0(w);
w[i]=u[i];
m = u[i];
if (!check()) return 1;
}
}
return 0;
} int main() {
char a[19], b[19];
int i;
RD(t);
while (t--) {
clr0(u),clr0(v);
scanf("%s", a);
s = strlen(a);
for (i = 0; i < s; ++i)
++u[id(a[i])]; scanf("%s", b);
n = strlen(b);
for (i = 0; i < n; ++i)
++v[id(b[i])];
if(solve())
puts("Yes");
else
puts("No");
}
return 0;
}

hdu 4930 斗地主恶心模拟的更多相关文章

  1. Hdu 4930 斗地主

    模拟题,只是想纪念下,WA到死了…… 看到好多代码都好长,其实想说不用这么暴力. #include <iostream> #include <cstdio> #include ...

  2. hdu 5071 vector操作恶心模拟

    http://acm.hdu.edu.cn/showproblem.php?pid=5071 对于每一个窗口,有两个属性:优先级+说过的单词数,支持8个操作:新建窗口,关闭窗口并输出信息,聊天(置顶窗 ...

  3. HDU 4930 Fighting the Landlords(暴力枚举+模拟)

    HDU 4930 Fighting the Landlords 题目链接 题意:就是题中那几种牌型.假设先手能一步走完.或者一步让后手无法管上,就赢 思路:先枚举出两个人全部可能的牌型的最大值.然后再 ...

  4. HDU - 5071 Chat(模拟)

    原题链接 题意:有各种操作,模拟这个程序并输出每次操作的信息 分析:恶心模拟题...用个map记录一下各个等级女孩的谈话数,同时也便于查找权值为u的在不在队列里.因为n很小,其他就暴力模拟了. #in ...

  5. HDU 4930 Fighting the Landlords(模拟)

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4930 解题报告:斗地主,加了一个四张可以带两张不一样的牌,也可以带一对,判断打出一手牌之后,如果对手没 ...

  6. hdu 4964 恶心模拟

    http://acm.hdu.edu.cn/showproblem.php?pid=4964 给定语句,按照语法翻译html并输出. 就是恶心的模拟,递归搞就行了 处理id和class时,在一个'&g ...

  7. HDU 4930 Fighting the Landlords --多Trick,较复杂模拟

    题意:两个人A和B在打牌,只有题目给出的几种牌能出若A第一次出牌B压不住或者A一次就把牌出完了,那么A赢,输出Yes,否则若A牌没出完而且被B压住了,那么A输,输出No. 解法:知道规则,看清题目,搞 ...

  8. 2014多校第六场 1010 || HDU 4930 Fighting the Landlords (模拟)

    题目链接 题意 : 玩斗地主,出一把,只要你这一把对方要不了或者你出这一把之后手里没牌了就算你赢. 思路 : 一开始看了第一段以为要出很多次,实际上只问了第一次你能不能赢或者能不能把牌出尽. #inc ...

  9. HDU 4930 Fighting the Landlords(扯淡模拟题)

    Fighting the Landlords 大意: 斗地主... . 分别给出两把手牌,肯定都合法.每张牌大小顺序是Y (i.e. colored Joker) > X (i.e. Black ...

随机推荐

  1. Liunx rm

    rm是一个危险的命令,使用的时候要特别当心,尤其对于新手,否则整个系统就会毁在这个命令(比如在/(根目录)下执行rm * -rf,这是一个危险的动作,“ * ”代表任意个字符).所以,我们在执行rm之 ...

  2. ubuntu下安装配置ADB

    1.下载SDK Tools for Linux,地址:http://developer.android.com/sdk/index.html 2.解压,将 android-sdk-linux 文件夹放 ...

  3. 拍照一分钟,修图两小时,PS大神是这样修片的!

    乌克兰有一个叫Viktoria Solidarnyh的美图艺术家,这个艺术家有一个特别的技能——P图,她P的图,水平真的非常赞...来感受一下.... 瞬间变成魔幻田园风... 编辑:千锋UI设计 ​ ...

  4. apt install yum失败

    解决办法:sudo apt-get update

  5. Maven 下载安装

    http://www.runoob.com/maven/maven-tutorial.html https://www.yiibai.com/maven/ Maven 提倡使用一个共同的标准目录结构, ...

  6. python 函数调用顺序

    def foo(): print ('in the foo') bar() def bar(): print ('in the bar') foo() 1.foo函数进入内存 2.bar函数进入内存 ...

  7. m序列c语言实现

    演示,不是算法 void m4() { int a[4]={1,0,0,1}; int m[15]; int temp; for(int i=0;i<15;i++){ m[i] = a[0]; ...

  8. 企业IT资产管理功能大全

  9. 区间DP初探 P1880 [NOI1995]石子合并

    https://www.luogu.org/problemnew/show/P1880 区间dp,顾名思义,是以区间为阶段的一种线性dp的拓展 状态常定义为$f[i][j]$,表示区间[i,j]的某种 ...

  10. servler中表单加了enctype="multipart/form-data"属性后request就接收不到表单传过来的值了

    在解决博问node.js接受参数的时候,发现当form中添加enctype:"multipart/form-data",后台确实获取不到数据,于是跑到百度上查了一下,终于明白为什么 ...