HDU 4930 Fighting the Landlords (超级暴力+读懂题意)

题目链接:HDU 4930 Fighting the Landlords

斗地主!!。不会玩这游戏,真是苦逼。题意其他都还好,就是要注意只要第一个回合1号玩家能压制2号玩家就算赢了(突破点)。

其他就分类暴力了,思路还是比较清晰的。

注意点:

1.对方炸弹,必输

2.一回合就出完牌,必胜

AC代码:

#include<stdio.h>
#include<string.h>
int vis1[30],vis2[30];

int find(char s)
{
	if(s=='T')
		return 10;
	else if(s=='J')
		return 11;
	else if(s=='Q')
		return 12;
	else if(s=='K')
		return 13;
	else if(s=='A')
		return 14;
	else if(s=='2')
		return 15;
	else if(s=='X')
		return 16;
	else if(s=='Y')
		return 17;
	else if(s>='3' && s<='9')
		return s-'0';
}
int main()
{
	int t,i,j;
	char s1[20],s2[20];
	int len1,len2;

#ifdef ONLINE_JUDGE
#else
	freopen("E:/ZJUNIT/ACM/test/ACMtest/1010.txt","r",stdin);
#endif

	while(scanf("%d",&t)!=EOF)
	{
		while(t--)
		{
			memset(vis1,0,sizeof vis1);
			memset(vis2,0,sizeof vis2);
			scanf("%s",s1);
			scanf("%s",s2);
			//printf("%s\n",s1);
			//printf("%s\n",s2);
			len1=strlen(s1);
			for(i=0;i<len1;i++)
				vis1[find(s1[i])]++;
			len2=strlen(s2);
			for(i=0;i<len2;i++)
				vis2[find(s2[i])]++;
			int mark=0,count=0;
			//
			int a=0,b=0,c=0,d=0;
			int e=0,f=0,orz=0;

			if(vis1[16]!=0 && vis1[17]!=0)
				e++;
			if(vis2[16]!=0 && vis2[17]!=0)
				f++;
			for(i=0;i<20;i++)
			{
				if(vis1[i]>0)
				{
					if(vis1[i]==1)
						a++;
					if(vis1[i]==2)
						b++;
					if(vis1[i]==3)
						c++;
					if(vis1[i]==4)
						d++;
				}
				if(vis2[i]==4)
					orz++;
			}
			//王炸
			if(e==1)
			{
				printf("Yes\n");
				continue;
			}
			//一次出完 a是1张牌。b是2张牌,c是3张牌,d是4张牌
			if(len1==1)
			{
				printf("Yes\n");
				continue;
			}
			if(len1==2 && b==1)
			{
				printf("Yes\n");
				continue;
			}
			if((len1==3 && c==1) || (len1==4 && c==1 && a==1) || (len1==5 && c==1 && b==1) || (len1==5 && c==1 && a==2))
			{
				printf("Yes\n");
				continue;
			}
			if((len1==4 && d==1) ||(len1==6 && d==1 && b==1) || (len1==6 && d==1 && a==2))
			{
				printf("Yes\n");
				continue;
			}

			if(f==1 || orz!=0)//对手有炸弹
			{
				printf("No\n");
				continue;
			}
			int max1=-1,max2=0;
			for(i=0;i<20;i++)
			{
				if(vis1[i]>=1 && max1<i)
					max1=i;
				if(vis2[i]>=1 && max2<i)
					max2=i;
			}
			if(max1>=max2)
			{
				printf("Yes\n");
				continue;
			}
			//2
			max1=-1,max2=0;
			for(i=0;i<20;i++)
			{
				if(vis1[i]>=2 && max1<i)
					max1=i;
				if(vis2[i]>=2 && max2<i)
					max2=i;
			}
			if(max1>=max2)
			{
				printf("Yes\n");
				continue;
			}

			//3
			max1=-1,max2=0;
			for(i=0;i<20;i++)
			{
				if(vis1[i]>=3 && max1<i)
					max1=i;
				if(vis2[i]>=3 && max2<i)
					max2=i;
			}
			if(max1>=max2)
			{
				printf("Yes\n");
				continue;
			}

			//4
			max1=-1,max2=0;
			for(i=0;i<20;i++)
			{
				if(vis1[i]>=4 && max1<i)
					max1=i;
				if(vis2[i]>=4 && max2<i)
					max2=i;
			}
			if(max1>=max2)
			{
				printf("Yes\n");
				continue;
			}
			printf("No\n");
		}
	}
	return 0;
}

HDU 4930 Fighting the Landlords (超级暴力+读懂题意)

时间: 2024-11-03 22:11:12

HDU 4930 Fighting the Landlords (超级暴力+读懂题意)的相关文章

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

HDU 4930 Fighting the Landlords 题目链接 题意:就是题中那几种牌型,如果先手能一步走完,或者一步让后手无法管上,就赢 思路:先枚举出两个人所有可能的牌型的最大值,然后再去判断即可 代码: #include <cstdio> #include <cstring> #include <algorithm> using namespace std; struct Player { int rank[15]; } p1, p2; int t, h

hdu 4930 Fighting the Landlords (模拟)

Fighting the Landlords Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 262144/262144 K (Java/Others) Total Submission(s): 160    Accepted Submission(s): 52 Problem Description Fighting the Landlords is a card game which has been a heat for ye

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

Fighting the Landlords 大意: 斗地主....   分别给出两把手牌,肯定都合法.每张牌大小顺序是Y (i.e. colored Joker) > X (i.e. Black & White Joker) > 2 > A (Ace) > K (King) > Q (Queen) > J (Jack) > T (10) > 9 > 8 > 7 > 6 > 5 > 4 > 3. 给你8种组合:1.

HDU 4930 Fighting the Landlords(模拟)

题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4930 解题报告:斗地主,加了一个四张可以带两张不一样的牌,也可以带一对,判断打出一手牌之后,如果对手没有能够大过你的牌就输出Yes,或者如果你把手上的牌一次性打完也输出Yes,否则输出No,代码有280多行,表示光是敲代码就花了一个多小时,手速还是太慢. 1.首先判断手上的牌能不能一次打完 如果一次性打不完: 2.首先判断对方有没有一对王,有就输出No 3.判断对手有没有四张的牌,如果有,再判断自己

HDU 4930 Fighting the Landlords 模拟

_(:зゝ∠)_ 4带2居然不是炸弹,, #include <algorithm> #include <cctype> #include <cassert> #include <cstdio> #include <cstring> #include <climits> #include <vector> #include<iostream> using namespace std; #define N 18 #

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

题意:两个人A和B在打牌,只有题目给出的几种牌能出若A第一次出牌B压不住或者A一次就把牌出完了,那么A赢,输出Yes,否则若A牌没出完而且被B压住了,那么A输,输出No. 解法:知道规则,看清题目,搞清有哪些Trick,就可以直接模拟搞了.详见代码: #include <iostream> #include <cstdio> #include <cstring> #include <cstdlib> #include <cmath> #inclu

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

题目链接 题意 : 玩斗地主,出一把,只要你这一把对方要不了或者你出这一把之后手里没牌了就算你赢. 思路 : 一开始看了第一段以为要出很多次,实际上只问了第一次你能不能赢或者能不能把牌出尽. 1 #include <cstdio> 2 #include <cstring> 3 #include <iostream> 4 5 using namespace std ; 6 7 char str1[20],str2[20] ; 8 int hash1[20],hash2[2

hdu 4930 Fighting the Landlords

Fighting the Landlords Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 262144/262144 K (Java/Others) Total Submission(s): 480    Accepted Submission(s): 163 Problem Description Fighting the Landlords is a card game which has been a heat for y

swust oj 188--异面空间(读懂题意很重要)

题目链接:http://acm.swust.edu.cn/problem/188/ Time limit(ms): 1000 Memory limit(kb): 65535 江鸟来到了一个很奇怪的星球,这个星球上,有两个二维坐标系XX和YY,这两个坐标系之间的坐标存在如下函数关系式: f(x)=x^2+2*x+3 f(y)=3*y+2 比如对于XX坐标系上的点(3,4)经过这一关系映射后得到YY坐标系上的点为(18,14).这个映射关系一;同时,还有种映射关系是对于X坐标系上的点(a,b)和YY