uva 11210

https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=2151

题意:给你十三张麻将,问你需要哪几张牌就可以胡牌,这个胡牌排除了七小对以及十三幺

胡牌必须要有一个对子加n个顺子或者三张相同的牌(n)可以为0

思路:枚举每一张牌,然后dfs一下看看是否可以胡

dfs我的是枚举每一个对子

 

 1 #include <stdio.h>
 2 #include <string.h>
 3 #include <string>
 4 #include <map>
 5 #include <iostream>
 6 using namespace std;
 7 
 8 map<string,int>s;
 9 
10 string tmp[50]={"0","1S","2S","3S","4S","5S","6S","7S","8S","9S",
11 "0","1T","2T","3T","4T","5T","6T","7T","8T","9T",
12 "0","1W","2W","3W","4W","5W","6W","7W","8W","9W",
13 "0","DONG","NAN","XI","BEI","ZHONG","FA","BAI"};
14 bool vis[56];
15 int num[60];
16 
17 bool dfs(int cnt)
18 {
19     for(int i = 1;i<=37;i++)
20     {
21         if(num[i]>=3)
22         {
23             if(cnt==3)
24                 return true;
25             num[i]-=3;
26             if(dfs(cnt+1))
27                 return true;
28             num[i]+=3;
29         }
30     }
31     for(int i = 1;i<=27;i++)
32     {
33         if(i%10!=8&&i%10!=9&&i%10!=0&&num[i]&&num[i+1]&&num[i+2])
34         {
35             if(cnt==3)  return true;
36             num[i]--;
37             num[i+1]--;
38             num[i+2]--;
39             if(dfs(cnt+1))  return true;
40             num[i]++;
41             num[i+1]++;
42             num[i+2]++;
43         }
44     }
45     return false;
46 }
47 
48 bool check()
49 {
50     for(int i = 1;i<=37;i++)
51     {
52         if(num[i]>=2)
53         {
54             num[i]-=2;
55             if(dfs(0))  return true;
56             num[i]+=2;
57         }
58     }
59     return false;
60 }
61 
62 
63 int main()
64 {
65    // freopen("in.txt","r",stdin);
66     int Case = 0;
67     for(int i = 0;i<=37;i++)
68         s[tmp[i]] = i;
69     string str[20];
70     while(cin>>str[1]){
71         int cnt = 0;
72         memset(vis,false,sizeof(vis));
73         memset(num,0,sizeof(num));
74         if(str[1] == "0")    break;
75         for(int i =2;i<=13;i++) cin>>str[i];
76 
77         for(int i = 1;i<=37;i++){
78         memset(num,0,sizeof(num));
79             for(int i = 1;i<=13;i++)
80                num[s[str[i]]]++;
81                 if(i%10!=0&&num[i]!=4){
82                     num[i]++;
83                     if(check())
84                         vis[i] = true,cnt++;
85                     num[i]--;
86                 }
87         }
88         printf("Case %d:",++Case);
89 
90         for(int i = 1;i<=37;i++)
91             if(vis[i])  cout<<" "<<tmp[i];
92         if(!cnt)
93             cout<<" Not ready";
94         cout<<endl;
95         }
96     return 0;
97 }

 

转载于:https://www.cnblogs.com/Tree-dream/p/7603733.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/391272.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

机器学习图像源代码_使用带有代码的机器学习进行快速房地产图像分类

机器学习图像源代码RoomNet is a very lightweight (700 KB) and fast Convolutional Neural Net to classify pictures of different rooms of a house/apartment with 88.9 % validation accuracy over 1839 images. I have written this in python and TensorFlow.RoomNet是…

leetcode 938. 二叉搜索树的范围和

给定二叉搜索树的根结点 root&#xff0c;返回值位于范围 [low, high] 之间的所有结点的值的和。 示例 1&#xff1a; 输入&#xff1a;root [10,5,15,3,7,null,18], low 7, high 15 输出&#xff1a;32 示例 2&#xff1a; 输入&#xff1a;root [10,5,15,3,7,13,18,1,nul…

456

456 转载于:https://www.cnblogs.com/Forever77/p/11517711.html

课后作业-结队编程项目进度-贪吃蛇

当前进度&#xff1a; 1.完成了窗口和蛇的绘制 2控制蛇的放向 3.绘制食物&#xff0c;随机出现 4.设计暂停键和开始键 有遇到过问题&#xff0c;但通过上网和向同学请教解决了转载于:https://www.cnblogs.com/qwsa/p/7605384.html

一百种简单整人方法_一种非常简单的用户故事方法

一百种简单整人方法User stories are a great way to plan development work. In theory. But how do you avoid getting burned in practice? I propose a radically simple approach.用户故事是计划开发工作的好方法。 理论上。 但是&#xff0c;如何避免在实践中被烫伤&…

COVID-19和世界幸福报告数据告诉我们什么?

For many people, the idea of ​​staying home actually sounded good at first. This process was really efficient for Netflix and Amazon. But then sad truths awaited us. What was boring was the number of dead and intubated patients one after the other. We al…

Python:self理解

Python类 class Student:# 类变量&#xff0c;可以通过类.类变量(Student.classroom)或者实例.类变量(a.classroom)方式调用classroom 火箭班def __init__(self, name, age):# self代表类的实例&#xff0c;self.name name表示当实例化Student时传入的name参数赋值给类的实例…

leetcode 633. 平方数之和(双指针)

给定一个非负整数 c &#xff0c;你要判断是否存在两个整数 a 和 b&#xff0c;使得 a2 b2 c 。 示例 1&#xff1a; 输入&#xff1a;c 5 输出&#xff1a;true 解释&#xff1a;1 * 1 2 * 2 5 示例 2&#xff1a; 输入&#xff1a;c 3 输出&#xff1a;false 示例 3&…

洛谷 P2919 [USACO08NOV]守护农场Guarding the Farm

题目描述 The farm has many hills upon which Farmer John would like to place guards to ensure the safety of his valuable milk-cows. He wonders how many guards he will need if he wishes to put one on top of each hill. He has a map supplied as a matrix of int…

iOS 开发一定要尝试的 Texture(ASDK)

原文链接 - iOS 开发一定要尝试的 Texture(ASDK)(排版正常, 包含视频) 前言 本篇所涉及的性能问题我都将根据滑动的流畅性来评判, 包括掉帧情况和一些实际体验 ASDK 已经改名为 Texture, 我习惯称作 ASDK 编译环境: MacOS 10.13.3, Xcode 9.2 参与测试机型: iPhone 6 10.3.3, i…

lisp语言是最好的语言_Lisp可能不是数据科学的最佳语言,但是我们仍然可以从中学到什么呢?...

lisp语言是最好的语言This article is in response to Emmet Boudreau’s article ‘Should We be Using Lisp for Data-Science’.本文是对 Emmet Boudreau的文章“我们应该将Lisp用于数据科学”的 回应 。 Below, unless otherwise stated, lisp refers to Common Lisp; in …

链接访问后刷新颜色回到初始_如何使链接可访问(提示:颜色不够)

链接访问后刷新颜色回到初始Link accessibility is one of the most important aspects of usability. However, designers often dont understand what it takes to make links accessible. Most frequently, they only distinguish links by color, which makes it hard for …

567

567 转载于:https://www.cnblogs.com/Forever77/p/11519678.html

leetcode 403. 青蛙过河(dp)

一只青蛙想要过河。 假定河流被等分为若干个单元格&#xff0c;并且在每一个单元格内都有可能放有一块石子&#xff08;也有可能没有&#xff09;。 青蛙可以跳上石子&#xff0c;但是不可以跳入水中。 给你石子的位置列表 stones&#xff08;用单元格序号 升序 表示&#xff…

static、volatile、synchronize

原子性&#xff08;排他性&#xff09;&#xff1a;不论是多核还是单核&#xff0c;具有原子性的量&#xff0c;同一时刻只能有一个线程来对它进行操作&#xff01;可见性&#xff1a;多个线程对同一份数据操作&#xff0c;thread1改变了某个变量的值&#xff0c;要保证thread2…

tensorflow基本教程

转载自 http://tensornews.cn/ 转载于:https://www.cnblogs.com/Chris-01/p/11523316.html

1.10-linux三剑客之sed命令详解及用法

内容:1.sed命令介绍2.语法格式,常用功能查询 增加 替换 批量修改文件名第1章 sed是什么字符流编辑器 Stream Editor第2章 sed功能与版本处理出文本文件,日志,配置文件等增加,删除,修改,查询sed --versionsed -i 修改文件内容第3章 语法格式3.1 语法格式sed [选项] [sed指令…

python pca主成分_超越“经典” PCA:功能主成分分析(FPCA)应用于使用Python的时间序列...

python pca主成分FPCA is traditionally implemented with R but the “FDASRSF” package from J. Derek Tucker will achieve similar (and even greater) results in Python.FPCA传统上是使用R实现的&#xff0c;但是J. Derek Tucker的“ FDASRSF ”软件包将在Python中获得相…

blender视图缩放_如何使用主视图类型缩放Elm视图

blender视图缩放A concept to help Elm Views scale as applications grow larger and more complicated.当应用程序变得更大和更复杂时&#xff0c;可帮助Elm Views扩展的概念。 In Elm, there are a lot of great ways to scale the Model, and update, but there is more c…

初探Golang(2)-常量和命名规范

1 命名规范 1.1 Go是一门区分大小写的语言。 命名规则涉及变量、常量、全局函数、结构、接口、方法等的命名。 Go语言从语法层面进行了以下限定&#xff1a;任何需要对外暴露的名字必须以大写字母开头&#xff0c;不需要对外暴露的则应该以小写字母开头。 当命名&#xff08…