博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
暴力 BestCoder Round #41 1001 ZCC loves straight flush
阅读量:6479 次
发布时间:2019-06-23

本文共 1130 字,大约阅读时间需要 3 分钟。

 

1 /* 2     m数组记录出现的花色和数值,按照数值每5个搜索,看看有几个已满足,剩下 5 - cnt需要替换 3     ╰· 4 */ 5 #include 
6 #include
7 #include
8 #include
9 #include
10 using namespace std;11 12 const int MAXN = 1e4 + 10;13 const int INF = 0x3f3f3f3f;14 15 int main(void) //BestCoder Round #41 1001 ZCC loves straight flush16 {17 //freopen ("A.in", "r", stdin);18 19 int t;20 scanf ("%d", &t);21 while (t--)22 {23 int c[5], d[5], m[5][20];24 memset (m, 0, sizeof (m));25 string s;26 for (int i=0; i<5; ++i)27 {28 cin >> s; c[i] = s[0] - 'A';29 if (s.size () == 2) d[i] = s[1] - '0';30 else d[i] = 10 + s[2] - '0';31 m[c[i]][d[i]]++;32 }33 34 int mn = INF;35 for (int i=0; i<5; ++i)36 {37 int d = c[i];38 for (int j=1; j<=10; ++j)39 {40 int cnt = 0;41 for (int k=j; k

 

转载于:https://www.cnblogs.com/Running-Time/p/4509574.html

你可能感兴趣的文章
SQL truncate 、delete与drop区别
查看>>
tomcat的maxThreads、acceptCount(最大线程数、最大排队数)
查看>>
Maven Plugins 与 PluginManagement的关系
查看>>
好程序员web前端分享HTML基本结构和基本语法
查看>>
动态规划算法解最长公共子序列问题
查看>>
“模态”DIV对话框
查看>>
[转贴] 如何有效地报告Bug
查看>>
【Spring开发】—— Spring注入静态变量
查看>>
CentOs7 急速安装 MySQL
查看>>
Haskell的仿函数
查看>>
Spring IOC AOP
查看>>
删除.svn文件夹及文件
查看>>
更换字体
查看>>
网络限速脚本
查看>>
mysql数据库 常用操作 sql指令 总结
查看>>
ubuntu安装和查看已安装
查看>>
windows下python3安装beautifulsoup插件
查看>>
常量池
查看>>
优雅且高效的使用Chrome Developer Tools
查看>>
使用Intellij IDEA 进行代码重构
查看>>